action twilio_fetch_incoming_phone_number_assigned_add_on { label: "FetchIncomingPhoneNumberAssignedAddOn" description: "Fetch an instance of an Add-on installation currently assigned to this Number." provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/IncomingPhoneNumbers/{ResourceSid}/AssignedAddOns/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } ResourceSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "ResourceSid", "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 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`." } } } }