DevelopersAPI referenceTasksProjects
Update a project
Partial update. Setting leadId to "" clears the lead; a non-empty leadId outside the org's members is 400 "invalid leadId". A `name` that another project in the same team already uses is a 409; a blank one is a 400. Re-sending the project's own name is always allowed.
View as MarkdownAuthorization
bearer AuthorizationBearer <token>
In: header
Path Parameters
id*string
Format
uuidRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X PATCH "https://example.com/v1/projects/497f6eca-6276-4993-bfeb-53cbbbba6f08" \ -H "Content-Type: application/json" \ -d '{}'{ "project": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "teamId": "a4ede8ba-7c0a-4485-8763-cbd9b282fbec", "name": "string", "description": "string", "status": "planned", "leadId": "3c6e2b8e-0e8f-48db-8791-27271df10113", "targetDate": "2019-08-24", "created": "2019-08-24T14:15:22Z", "modified": "2019-08-24T14:15:22Z" }}