Suggestions

close search

Queue Management

Realtime queue

URL: https://api.stringeex.com/v1/queue/list

HTTP method: GET

Content-Type: application/json

Custom HTTP header: Name: X-STRINGEE-AUTH Value: JSON web token (JWT), see StringeeX API REST Authentication

Sample response:

{
    "r": 0,
    "data": {
        "totalCount": 2,
        "totalPages": 1,
        "currentPage": 1,
        "limit": 200,
        "queues": [
            {
                "totalWaitingCall": 0,
                "queueId": "queue_2",
                "totalAnsweringCall": 0,
                "queueName": "QUEUE_NAME 2222",
                "totalRingingCall": 0
            },
            {
                "totalWaitingCall": 1,
                "queueId": "queue_1",
                "totalAnsweringCall": 1,
                "queueName": "QUEUE_NAME 111",
                "totalRingingCall": 0
            }
        ]
    },
    "message": "Load queue(s) success"
}