For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Log inSign up
Support
cXMLREST API
cXMLREST API
  • Core
    • Overview
    • Authorization
    • Error codes
    • Paging
    • REST client SDKs
  • Compatibility REST API
      • GETList Applications
      • POSTCreate an Application
      • GETFind an Application by ID
      • POSTUpdate an Application
      • DELDelete an Application
LogoLogoSignalWire Docs
Log inSign up
Support
Compatibility REST APIApplications

List Applications

|View as Markdown|Open in Claude|
GET
https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/:AccountSid/Applications
GET
/api/laml/2010-04-01/Accounts/:AccountSid/Applications
$curl https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Applications \
> -u "<project_id>:<api_token>"
1{
2 "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Applications?Page=0&PageSize=50",
3 "first_page_uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Applications?Page=0&PageSize=50",
4 "next_page_uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Applications?Page=1&PageSize=50",
5 "previous_page_uri": null,
6 "page": 0,
7 "page_size": 50,
8 "applications": [
9 {
10 "sid": "b3877c40-da60-4998-90ad-b792e98472af",
11 "account_sid": "b3877c40-da60-4998-90ad-b792e98472af",
12 "api_version": "2010-04-01",
13 "date_created": "Sat, 15 Sept 2018 10:00:00 +0000",
14 "date_updated": "Sat, 16 Sept 2018 10:00:00 +0000",
15 "friendly_name": "My Friendly Name",
16 "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Applications/b3877c40-da60-4998-90ad-b792e98472af.json",
17 "voice_url": "http://example.com",
18 "voice_method": "POST",
19 "voice_fallback_url": "http://example.com",
20 "voice_fallback_method": "POST",
21 "status_callback": "http://example.com",
22 "status_callback_method": "POST",
23 "voice_caller_id_lookup": null,
24 "sms_url": "http://example.com",
25 "sms_method": "POST",
26 "sms_fallback_url": "http://www.example.com/sms-fallback",
27 "sms_fallback_method": "POST",
28 "sms_status_callback": "http://www.example.com/sms-status-callback",
29 "sms_status_callback_method": "POST",
30 "message_status_callback": "http://www.example.com/sms-status-callback"
31 }
32 ]
33}
The ability to read all of the applications that are associated with your Account. This will be returned as a list of applications. #### Permissions The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_ or _Messaging_ or _Fax_. [Learn more about API scopes](/docs/platform/your-signalwire-api-space).
Was this page helpful?
Previous

Create an Application

Next
Built with

The ability to read all of the applications that are associated with your Account. This will be returned as a list of applications.

Permissions

The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice or Messaging or Fax.

Learn more about API scopes.

Authentication

AuthorizationBasic
SignalWire Basic Authentication using Project ID and API Token. The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password. Example: ``` Authorization: Basic base64(project_id:token) ```

Path parameters

AccountSidstringRequiredformat: "uuid"
The Account ID that has the Application.

Query parameters

FriendlyNamestringOptional
Filter by a named unique identifier for the resource.
PageintegerOptional>=0Defaults to 0

The page number to retrieve. Page numbers are zero-indexed, so the first page is 0.

PageSizeintegerOptional1-1000Defaults to 50
The number of results to return per page. The default is 50, and the maximum is 1000.
PageTokenstringOptional
A token used to retrieve a specific page of results.

Response

The request has succeeded.
uristring
The URI for this resource.
first_page_uristring
The URI for the first page of results.
next_page_uristring or null
The URI for the next page of results. Null if there are no more pages.
previous_page_uristring or null
The URI for the previous page of results. Null if this is the first page.
pageinteger

The current page number. Zero-indexed.

page_sizeinteger
The number of results per page.
applicationslist of objects
List of applications.

Errors

400
Bad Request Error
401
Unauthorized Error
422
Unprocessable Entity Error

SignalWire Basic Authentication using Project ID and API Token.

The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password.

Example:

Authorization: Basic base64(project_id:token)