Aller au contenu

/api/projects/{id} (PATCH)

PATCH
/api/projects/{id}
curl --request PATCH \
--url https://example.com/api/projects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "name": "example", "color": "example", "clientId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "description": "example" }'
id
required
string format: uuid
Media type application/json
object
name
string
nullable
color
string
nullable
clientId
string format: uuid
nullable
description
string
nullable
Example generated
{
"name": "example",
"color": "example",
"clientId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"description": "example"
}

OK