Aller au contenu principal

GET /custom_statuses/:id

Get a specific custom status given an id.

Example Request

curl -X GET "https://api.callbell.eu/v1/custom_statuses/0d6041a2-8b88-49ec-a99b-a88a078a16c1" \
-H "Authorization: Bearer test_gshuPaZoeEG6ovbc8M79w0QyM" \
-H "Content-Type: application/json"

Response

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

Example Response

response.json
{
"customStatus": {
"name": "Vacationing",
"createdAt": "2024-11-22 21:29:43 +0100",
"updatedAt": "2024-11-22 21:29:43 +0100",
"id": "0d6041a2-8b88-49ec-a99b-a88a078a16c1"
}
}