action twilio_fetch_incoming_phone_number_assigned_add_on_extension { label: "FetchIncomingPhoneNumberAssignedAddOnExtension" description: "Fetch an instance of an Extension for the Assigned Add-on." provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/IncomingPhoneNumbers/{ResourceSid}/AssignedAddOns/{AssignedAddOnSid}/Extensions/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } AssignedAddOnSid: { type: "string" } ResourceSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "AssignedAddOnSid", "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." } assigned_add_on_sid: { type: "string" description: "The SID that uniquely identifies the assigned Add-on installation." } enabled: { type: "boolean" description: "Whether the Extension will be invoked." } friendly_name: { type: "string" description: "The string that you assigned to describe the resource." } product_name: { type: "string" description: "A string that you assigned to describe the Product this Extension is used within." } 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." } 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`." } } } }