Search + K

Command Palette

Search for a command to run...

Sign In

Fetch an instance of a connect-app

GET /2010-04-01/Accounts/{AccountSid}/ConnectApps/{Sid}.json
Copy endpoint
https://api.twilio.com

Fetch an instance of a connect-app

Parameters

path Path Parameters

Name Type
AccountSid required

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

`AC${string}`
Sid required

The Twilio-provided string that uniquely identifies the ConnectApp resource to fetch.

`CN${string}`

Responses

200 application/json

OK

interface ApiV2010AccountConnectApp {
account_sid?: `AC${string}` | null;
authorize_redirect_url?: string | null;
company_name?: string | null;
deauthorize_callback_method?: "GET" | "POST" | null;
deauthorize_callback_url?: string | null;
description?: string | null;
friendly_name?: string | null;
homepage_url?: string | null;
permissions?: ConnectAppEnumPermission

The set of permissions that your ConnectApp requests.

type ConnectAppEnumPermission = "get-all" | "post-all"
[]
| null
;
sid?: `CN${string}` | null;
uri?: string | null;
}