action twilio_list_connect_app { label: "ListConnectApp" description: "Retrieve a list of connect-apps belonging to the account used to make the request" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/ConnectApps.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: { 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 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`." } } } } 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" } } } }