action twilio_fetch_connect_app { label: "FetchConnectApp" description: "Fetch an instance of a connect-app" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/ConnectApps/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "Sid"] additionalProperties: false } output: { type: "object" properties: { account_sid: { type: "string" description: "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the ConnectApp resource." } authorize_redirect_url: { type: "string" format: "uri" description: "The URL we redirect the user to after we authenticate the user and obtain authorization to access the Connect App." } company_name: { type: "string" description: "The company name set for the Connect App." } deauthorize_callback_method: { type: "string" format: "http-method" description: "The HTTP method we use to call `deauthorize_callback_url`." enum: ["HEAD", "GET", "POST", "PATCH", "PUT", "DELETE"] } deauthorize_callback_url: { type: "string" format: "uri" description: "The URL we call using the `deauthorize_callback_method` to de-authorize the Connect App." } description: { type: "string" description: "The description of the Connect App." } friendly_name: { type: "string" description: "The string that you assigned to describe the resource." } homepage_url: { type: "string" format: "uri" description: "The public URL where users can obtain more information about this Connect App." } permissions: { type: "array" description: "The set of permissions that your ConnectApp requests." items: { type: "string" enum: ["get-all", "post-all"] } } sid: { type: "string" description: "The unique string that that we created to identify the ConnectApp resource." } uri: { type: "string" description: "The URI of the resource, relative to `https://api.twilio.com`." } } } }