Headers
-
Content-Type string
-
Accept string
POST
/api/v1/client-status
curl \
--request POST https://api.plannrcrm.com/api/v1/client-status \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"name":"Active","colour":"#FFFFFF"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"name": "Active",
"colour": "#FFFFFF"
}
Response examples (200)
{
"name": "On Hold",
"uuid": "4c389782-093b-4bc0-a8bb-a9041039aac5",
"colour": "#FFFFFF",
"created_at": "2025-02-20T10:13:02+00:00",
"updated_at": "2025-02-20T10:13:02+00:00"
}