By using the Aculab site, you agree with our use of cookies.
right  Talk To Us!

Managing Outbound Service Queues

This API provides the ability to manage the outbound service queues.

For info on starting outbound services see Starting Outbound Services.

  • Outbound Queues

    This retrieves info on all your active outbound service queues.

    Authorisation

    This API uses basic authentication, using your cloud account username and API Access Key.

    Username : cloudID/username (e.g. 1-2-0/bob@example.com)
    Password : API Access key

    Request:

    Url : https://ws.aculabcloud.net/service/v1/outbound_queues
    Methods : GET

    Response:

    A list of JSON objects each containing the following parameters:

    ParameterValueDescription
    service_namestringThe name of the service.
    lengthintegerThe length of the service's queue.

    Example:

    https://ws.aculabcloud.net/service/v1/outbound_queues

    Response:

        [  
    	   {
              "service_name": "service-name-1",
              "length": 78
           },
           {
              "service_name": "service-name-2",
              "length": 112
           }
    	]