Retrieve a list of connect-apps belonging to the account used to make the request

GET /2010-04-01/Accounts/{AccountSid}/ConnectApps.json

Twilio Connect apps

Retrieve a list of connect-apps belonging to the account used to make the request

Path parameters

  • AccountSid string Required

    The SID of the Account that created the ConnectApp resources to read.

Query parameters

  • PageSize integer

    How many resources to return in each list page. The default is 50, and the maximum is 1000.

    Minimum value is 1, maximum value is 1000.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • connect_apps array[object]
      Hide connect_apps attributes Show connect_apps attributes
      • account_sid string | null

        The SID of the Account that created the resource

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

      • authorize_redirect_url string(uri) | null

        The URL to redirect the user to after authorization

      • company_name string | null

        The company name set for the Connect App

      • deauthorize_callback_method string(http-method) | null

        The HTTP method we use to call deauthorize_callback_url

        Values are HEAD, GET, POST, PATCH, PUT, or DELETE.

      • deauthorize_callback_url string(uri) | null

        The URL we call to de-authorize the Connect App

      • description string | null

        The description of the Connect App

      • friendly_name string | null

        The string that you assigned to describe the resource

      • homepage_url string(uri) | null

        The URL users can obtain more information

      • permissions array[string] | null

        The set of permissions that your ConnectApp requests

        Values are get-all or post-all.

      • sid string | null

        The unique string that identifies the resource

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^CN[0-9a-fA-F]{32}$.

      • uri string(uri) | null

        The URI of the resource, relative to https://api.twilio.com

    • end integer
    • first_page_uri string(uri)
    • next_page_uri string(uri)
    • page integer
    • page_size integer
    • start integer
    • uri string(uri)
GET /2010-04-01/Accounts/{AccountSid}/ConnectApps.json
curl \
 -X GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/ConnectApps.json \
 --user "username:password"
Response examples (200)
{
  "connect_apps": [
    {
      "account_sid": "string",
      "authorize_redirect_url": "https://example.com",
      "company_name": "string",
      "deauthorize_callback_method": "HEAD",
      "deauthorize_callback_url": "https://example.com",
      "description": "string",
      "friendly_name": "string",
      "homepage_url": "https://example.com",
      "permissions": [
        "get-all"
      ],
      "sid": "string",
      "uri": "https://example.com"
    }
  ],
  "end": 42,
  "first_page_uri": "https://example.com",
  "next_page_uri": "https://example.com",
  "page": 42,
  "page_size": 42,
  "previous_page_uri": "https://example.com",
  "start": 42,
  "uri": "https://example.com"
}