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:
Method | URL | Description |
---|---|---|
GET | https://ws.aculabcloud.net/service/v1/inbound | List the services |
GET | https://ws.aculabcloud.net/service/v1/schema/inbound | Get the service schema |
GET | https://ws.aculabcloud.net/service/v1/inbound/<ServiceName> | Read a service |
PUT | https://ws.aculabcloud.net/service/v1/inbound/<ServiceName> | Write (Create or replace) a service |
PATCH | https://ws.aculabcloud.net/service/v1/inbound/<ServiceName> | Modify a service |
DELETE | https://ws.aculabcloud.net/service/v1/inbound/<ServiceName> | Delete a service |
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).
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.
Response content
All web services in this API return response content of type "application/json".
-
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:
Parameter Value Description services array An array of service description objects. Where each service description object contains the following parameters:
Parameter Value Description name string The name of the service. target string A UAS application or a REST API page that the service targets. description string A 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" }, ... ] }