Skip to main content

GET /custom_statuses

Updates a specific custom status given an id.

Example Request

curl -X PUT "https://api.callbell.eu/v1/custom_statuses/8dbd6f6c-ec09-4b87-a04e-bef1c2ca41db" \
-H "Authorization: Bearer test_gshuPaZoeEG6ovbc8M79w0QyM" \
-H "Content-Type: application/json" \
-d '{
"name": "Back in a bit"
}'

Response

ParameterTypeDescription
idstringUnique identifier of the custom status
customStatusCustomStatus[]The object representing the custom status

Example Response

response.json
{
"customStatus": {
"name": "Back in a bit",
"createdAt": "2024-12-04 14:12:14 +0100",
"updatedAt": "2024-12-04 14:31:58 +0100",
"id": "8dbd6f6c-ec09-4b87-a04e-bef1c2ca41db"
}
}