Query call queue's status by it's unique ID.
The unique ID of call queue.
OK
Status of queue:
ONLINE
OFFLINE
"ONLINE"
const response = await fetch('http://127.0.0.1:8888/api/call_queues/{id}/status', { method: 'GET', headers: {}, }); const data = await response.json();
{ "status": "ONLINE" }