Fetch an instance of a connect-app
GET
/2010-04-01/Accounts/{AccountSid}/ConnectApps/{Sid}.json 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 [] | null;
sid?: `CN${string}` | null;
uri?: string | null;
}
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?:
sid?: `CN${string}` | null;
uri?: string | null;
}