Update a client status
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Path parameters
-
clientStatus_uuid
string Required
PUT
/api/v1/client-status/{clientStatus_uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/client-status/clientStatus_uuid' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Inactive","colour":"#FFFFFF"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Inactive",
"colour": "#FFFFFF"
}
Response examples (200)
{
"name": "On Hold",
"uuid": "af5f3e4c-0976-4b61-a45f-34fe566fb793",
"colour": "#FFFFFF",
"created_at": "2025-04-02T13:27:55+01:00",
"updated_at": "2025-04-02T13:27:55+01:00"
}