Call Queue Managers


GEThttps://api.voxo.co/queue-managers/{recordId}

Call Queue Manager By Id

Retreive queue manager by Id

Parameters

Path
  • Name
    recordId*
    Type
    Integer
    Description

    1234

Header
  • Name
    Authorization*
    Type
    String
    Description

    Bearer {AccessToken}

  • Name
    Content-Type*
    Type
    String
    Description

    application/json

Response

    {
        "id": 5,
        "queueId": 298,
        "userId": 1362,
        "userEmail": "fred@gmail.com",
        "timezone": null,
        "userRole": 3,
        "receiveReports": 0
    }

cURL

curl --location -g \
--request GET 'https://api.voxo.co/queue-managers/1234' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'

GEThttps://api.voxo.co/queue-managers?queueId={queueId}

Call All Queue Managers

Retreive queue managers for a specific queue Id

Parameters

Query
  • Name
    queueId*
    Type
    Integer
    Description

    1234

Header
  • Name
    Authorization*
    Type
    String
    Description

    Bearer {AccessToken}

  • Name
    Content-Type*
    Type
    String
    Description

    application/json

Response

    [
        {
            "id": 5,
            "queueId": 298,
            "userId": 1362,
            "userEmail": "fred@gmail.com",
            "timezone": null,
            "userRole": 3,
            "receiveReports": 0
        },
        {
            "id": 32,
            "queueId": 298,
            "userId": 1390,
            "userEmail": "cobra2335@yahoo.com",
            "timezone": "America/Chicago",
            "userRole": 7,
            "receiveReports": 0
        },
        {
            "id": 36,
            "queueId": 298,
            "userId": 797,
            "userEmail": "docharrod85@gmail.com",
            "timezone": "America/Chicago",
            "userRole": 3,
            "receiveReports": 1
        }
    ]

cURL

curl --location -g \
--request GET 'https://api.voxo.co/queue-managers?queueId=298' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'