cXML Applications

View as Markdown

cXML Applications are our serverless hosted service that allows you to easily serve static documents without setting up any infrastructure.

Properties

sidstringRequiredformat: "uuid"
The unique identifier of the cXML script on SignalWire.
date_createdstringRequired
The date and time, in ISO 8601 format, the script was created.
date_updatedstringRequired
The date and time, in ISO 8601 format, the script was updated.
date_last_accessedstring or nullRequired
The date and time, in ISO 8601 format, the script was last accessed, or null if never accessed.
account_sidstringRequiredformat: "uuid"
The unique identifier for the account this script is associated with.
namestringRequired
A friendly name given to the cXML script.
contentsstringRequired
The contents of the cXML script.
request_urlstringRequiredformat: "uri"
The unique URL to the raw contents of the cXML script.
num_requestsintegerRequired
The number of times this cXML script has been accessed.
api_versionstringRequired
The version of the SignalWire API.
uristringRequired
The URL of this resource.

Example object

The cXML Application Object
1{
2 "sid": "string",
3 "date_created": "string",
4 "date_updated": "string",
5 "date_last_accessed": "string",
6 "account_sid": "string",
7 "name": "string",
8 "contents": "string",
9 "request_url": "string",
10 "num_requests": 0,
11 "api_version": "string",
12 "uri": "string"
13}