Configure how your queues and tickets behave.
Workflows define the rules and automation that govern your customer service experience.
Retrieve your current workflow configuration.
GET /v1/business/workflow
X-API-Key: your_api_key_hereSet up rules to automatically manage service points.
Configure how and when your customers are notified.
Define the boundaries of a ticket's validity.
| Setting | Description |
|---|---|
maxPerCustomer | Limits how many active tickets a single customer can have. |
expirationMinutes | How long a ticket remains valid if not called. |
rejoinCooldown | Time a customer must wait before joining the same queue again. |
To modify these settings, use the associated PATCH endpoint.
PATCH /v1/business/workflow
X-API-Key: your_api_key_here
Content-Type: application/json
{
"automation": { "autoClose": true },
"lifecycle": { "maxPerCustomer": 5 }
}