Passa al contenuto principale

GET /custom_statuses

List all custom status belonging to the account.

Example Request

curl -X GET "https://api.callbell.eu/v1/custom_statuses" \
-H "Authorization: Bearer test_gshuPaZoeEG6ovbc8M79w0QyM" \
-H "Content-Type: application/json"

Response

ParameterTypeDescription
customStatusesCustomStatus[]A list of custom statuses.

Example Response

response.json
{
"customStatuses": [
{
"name": "Vacationing",
"createdAt": "2024-11-22 21:29:43 +0100",
"updatedAt": "2024-11-22 21:29:43 +0100",
"id": "0d6041a2-8b88-49ec-a99b-a88a078a16c1"
},
{
"name": "In meeting",
"createdAt": "2024-11-25 19:49:31 +0100",
"updatedAt": "2024-11-25 19:49:31 +0100",
"id": "25003aa2-d2b0-4089-852a-3e216e0a7495"
}
],
"meta": {
"page": 1,
"pages": 1
}
}