Applications

List Applications

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 must include one of the following scopes: Voice or Messaging or Fax.

get/Accounts/{AccountSid}/Applications

Path parameters

AccountSidstring uuid required

The Account ID that has the Application.

Query parameters

FriendlyNamestring

A named unique identifier for the resource. Allowed characters: A-Za-z0-9_-. Maximum of 100 characters.

Response

The request has succeeded.

Example response

{
  "links": {
    "uri": "/api/laml/2010-04-01/Accounts?Page=0&PageSize=50",
    "first_page_uri": "/api/laml/2010-04-01/Accounts?Page=0&PageSize=50",
    "next_page_uri": "/api/laml/2010-04-01/Accounts?Page=1&PageSize=50",
    "page_size": 50
  },
  "applications": [
    {
      "account_sid": "b3877c40-da60-4998-90ad-b792e98472af",
      "api_version": "2010-04-01",
      "date_created": "Sat, 15 Sept 2018 10:00:00 +0000",
      "date_updated": "Sat, 16 Sept 2018 10:00:00 +0000",
      "sid": "b3877c40-da60-4998-90ad-b792e98472af",
      "friendly_name": "My Friendly Name",
      "message_status_callback": "http://www.example.com/sms-status-callback",
      "sms_fallback_method": "GET",
      "sms_fallback_url": "http://www.example.com/sms-fallback",
      "sms_method": "GET",
      "sms_status_callback": "http://www.example.com/sms-status-callback",
      "sms_url": "http://example.com",
      "status_callback": "http://example.com",
      "status_callback_method": "POST",
      "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Applications/b3877c40-da60-4998-90ad-b792e98472af.json",
      "voice_fallback_method": "GET",
      "voice_fallback_url": "http://example.com",
      "voice_method": "GET",
      "voice_url": "http://example.com"
    }
  ]
}

Changes