Fetch an instance of an authorized-connect-app

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

Authorized Twilio Connect apps

Fetch an instance of an authorized-connect-app

Path parameters

  • AccountSid string Required

    The SID of the Account that created the AuthorizedConnectApp resource to fetch.

  • ConnectAppSid string Required

    The SID of the Connect App to fetch.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • 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}$.

    • The company name set for the Connect App

    • A detailed description of the app

    • The name of the Connect App

    • connect_app_homepage_url string(uri) | null

      The public URL for the Connect App

    • connect_app_sid string | null

      The SID that we assigned to the Connect App

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

    • date_created string(date-time-rfc-2822) | null

      The RFC 2822 date and time in GMT that the resource was created

    • date_updated string(date-time-rfc-2822) | null

      The RFC 2822 date and time in GMT that the resource was last updated

    • permissions array[string] | null

      Permissions authorized to the app

      Values are get-all or post-all.

    • uri string(uri) | null

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

GET /2010-04-01/Accounts/{AccountSid}/AuthorizedConnectApps/{ConnectAppSid}.json
curl \
 -X GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/AuthorizedConnectApps/{ConnectAppSid}.json \
 --user "username:password"
Response examples (200)
{
  "account_sid": "string",
  "connect_app_company_name": "string",
  "connect_app_description": "string",
  "connect_app_friendly_name": "string",
  "connect_app_homepage_url": "https://example.com",
  "connect_app_sid": "string",
  "date_created": "string",
  "date_updated": "string",
  "permissions": [
    "get-all"
  ],
  "uri": "https://example.com"
}