action twilio_list_incoming_phone_number_assigned_add_on { label: "ListIncomingPhoneNumberAssignedAddOn" description: "Retrieve a list of Add-on installations currently assigned to this Number." provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/IncomingPhoneNumbers/{ResourceSid}/AssignedAddOns.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Page: { type: "integer" } PageSize: { type: "integer" } PageToken: { type: "string" } ResourceSid: { type: "string" } } required: ["AccountSid", "ResourceSid"] additionalProperties: false } output: { type: "object" properties: { assigned_add_ons: { 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 resource." } configuration: { description: "A JSON string that represents the current configuration of this Add-on installation." type: "object" } 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." } description: { type: "string" description: "A short description of the functionality that the Add-on provides." } friendly_name: { type: "string" description: "The string that you assigned to describe the resource." } resource_sid: { type: "string" description: "The SID of the Phone Number to which the Add-on is assigned." } sid: { type: "string" description: "The unique string that that we created to identify the resource." } subresource_uris: { type: "object" format: "uri-map" description: "A list of related resources identified by their relative URIs." } unique_name: { type: "string" description: "An application-defined string that uniquely identifies the resource. It can be used in place of the resource's `sid` in the URL to address the 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" } } } }