action twilio_list_authorized_connect_app { label: "ListAuthorizedConnectApp" description: "Retrieve a list of authorized-connect-apps belonging to the account used to make the request" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/AuthorizedConnectApps.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Page: { type: "integer" } PageSize: { type: "integer" } PageToken: { type: "string" } } required: ["AccountSid"] additionalProperties: false } output: { type: "object" properties: { authorized_connect_apps: { type: "array" items: { 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`." } } } } end: { type: "integer" } first_page_uri: { type: "string" format: "uri" } next_page_uri: { type: "string" format: "uri" } page: { type: "integer" } page_size: { type: "integer" } previous_page_uri: { type: "string" format: "uri" } start: { type: "integer" } uri: { type: "string" format: "uri" } } } }