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

Managing Inbound Services

This section covers the web services for listing, reading, writing, modifying and deleting inbound services.

In the past, the only mechanism for managing inbound services was to use the online Cloud Console. These web services provide an alternative mechanism, giving the same level of functionality without any manual interaction with the Cloud Console. What's more, the two mechanisms are interchangeable: Inbound services originally created & edited using the Cloud Console can be modified & deleted using the web services, and vice versa.

The inbound web services are accessed using the following URL paths:

MethodURLDescription
GEThttps://ws.aculabcloud.net/service/v1/inbound List the services
GEThttps://ws.aculabcloud.net/service/v1/schema/inbound Get the service schema
GEThttps://ws.aculabcloud.net/service/v1/inbound/<ServiceName>Read a service
PUThttps://ws.aculabcloud.net/service/v1/inbound/<ServiceName>Write (Create or replace) a service
PATCHhttps://ws.aculabcloud.net/service/v1/inbound/<ServiceName>Modify a service
DELETEhttps://ws.aculabcloud.net/service/v1/inbound/<ServiceName>Delete a service
  The URL paths for the Read, Write, Modify and Delete web services are the same and it is the HTTP request method that differentiates between them.

To express what configuration options are set when using the Write or Modify web service, a fully complete or partially complete configuration can be supplied within the body of the HTTP request. When calling the Write web service and supplying a partially complete configuration, default values will be assumed for those options that are omitted. When calling the Modify web service and supplying a partially complete configuration, existing values will be assumed for those options are that omitted (The new configuration is effectively merged into the existing configuration).

  For inbound services, it is possible to call the Write web service without supplying a configuration at all. This will result in a configuration being written with all of its options set to default values.

Using the Get Schema web service, you can retrieve a copy of the inbound service configuration schema. This schema is used by the Cloud Server when it processes configurations received in web service requests. Should the Cloud Server encounter validation errors, the request will fail and all errors will be listed in an HTTP request error response. The schema can also be used locally, to ensure a tailor-made configuration validates before sending it in a web service request. Whilst it is not essential to do this, it can help gain a better understanding of the schema internals and save on the amount of requests sent to the same web service before your configuration is accepted.

  For more information about JSON schemas, visit The home of JSON Schema. See the implementations section for a list of all language specific validators, as well as some online validators. All the online validators are quite similar and simple to use (Paste the schema into one text box, paste a configuration into another text box and click a button to validate).

Response content

All web services in this API return response content of type "application/json".

 This is a low level API. For information on higher level APIs see the Web Services Language Wrappers
  • List

    This lists the names of all inbound services.

    You need to supply your account username and API access key in the basic authorisation string.

    URL : https://ws.aculabcloud.net/service/v1/inbound
    Methods : GET
    Username : cloudID/username (e.g. 1-2-0/bob@example.com)
    Password:Your API Access Key

    Returns on success:

    A JSON object within the body of a 200 response. The object contains the following parameter:

    ParameterValueDescription
    servicesarrayAn array of service description objects.

    Where each service description object contains the following parameters:

    ParameterValueDescription
    namestringThe name of the service.
    targetstringA UAS application or a REST API page that the service targets.
    descriptionstringA description of the service.

    Example:

    (GET) https://ws-1-2-0.aculabcloud.net/service/v1/inbound

    Response:

    {
        "services" : [
                {
                    "name" : "MyVoicemailService",
                    "target" : "http://11.222.33.44:50080/my_voicemail_first_page",
                    "description" : "This is the configuration for MyVoicemailService"
                },
                {
                    "name" : "MyOtherInboundService",
                    "target" : "http://11.222.33.44:50080/OtherInboundService",
                    "description" : "Another great inbound service"
                },
                ...
            ]
    }