Fetch an instance of an Extension for the Assigned Add-on.
GET
/2010-04-01/Accounts/{AccountSid}/IncomingPhoneNumbers/{ResourceSid}/AssignedAddOns/{AssignedAddOnSid}/Extensions/{Sid}.json https://api.twilio.com
Fetch an instance of an Extension for the Assigned Add-on.
Parameters
path Path Parameters
| Name | Type |
|---|---|
AccountSid
required
The SID of the Account that created the resource to fetch. | `AC${string}` |
ResourceSid
required
The SID of the Phone Number to which the Add-on is assigned. | `PN${string}` |
AssignedAddOnSid
required
The SID that uniquely identifies the assigned Add-on installation. | `XE${string}` |
Sid
required
The Twilio-provided string that uniquely identifies the resource to fetch. | `XF${string}` |
Responses
200 application/json
OK
interface ApiV2010AccountIncomingPhoneNumberIncomingPhoneNumberAssignedAddOnIncomingPhoneNumberAssignedAddOnExtension {
sid?: `XF${string}` | null;
account_sid?: `AC${string}` | null;
resource_sid?: `PN${string}` | null;
assigned_add_on_sid?: `XE${string}` | null;
friendly_name?: string | null;
product_name?: string | null;
unique_name?: string | null;
uri?: string | null;
enabled?: boolean | null;
}
sid?: `XF${string}` | null;
account_sid?: `AC${string}` | null;
resource_sid?: `PN${string}` | null;
assigned_add_on_sid?: `XE${string}` | null;
friendly_name?: string | null;
product_name?: string | null;
unique_name?: string | null;
uri?: string | null;
enabled?: boolean | null;
}