action twilio_fetch_authorized_connect_app { label: "FetchAuthorizedConnectApp" description: "Fetch an instance of an authorized-connect-app" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/AuthorizedConnectApps/{ConnectAppSid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } ConnectAppSid: { type: "string" } } required: ["AccountSid", "ConnectAppSid"] 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 AuthorizedConnectApp resource." } connect_app_company_name: { type: "string" description: "The company name set for the Connect App." } connect_app_description: { type: "string" description: "A detailed description of the Connect App." } connect_app_friendly_name: { type: "string" description: "The name of the Connect App." } connect_app_homepage_url: { type: "string" format: "uri" description: "The public URL for the Connect App." } connect_app_sid: { type: "string" description: "The SID that we assigned to the Connect App." } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } date_updated: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } permissions: { type: "array" description: "The set of permissions that you authorized for the Connect App. Can be: `get-all` or `post-all`." items: { type: "string" enum: ["get-all", "post-all"] } } uri: { type: "string" description: "The URI of the resource, relative to `https://api.twilio.com`." } } } }