Skip to content

Update project

PATCH https://blob.build/api/projects/:projectName

Schema

{
"name": string,
"description": string,
"repoLink": string?,
"wikiLink": string?,
}

Example

Terminal window
$ curl -X PATCH https://blob.build/api/projects/:projectName \
-H "Authorization: Bearer $API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "My Project",
"description": "My cool project",
"repoLink": "https://github.com/Example/MyProject",
"wikiLink": "https://github.com/MyUser/MyProject/wiki"
}'