Fetch an instance of an Add-on installation currently assigned to this Number.
GET
/2010-04-01/Accounts/{AccountSid}/IncomingPhoneNumbers/{ResourceSid}/AssignedAddOns/{Sid}.json https://api.twilio.com
Fetch an instance of an Add-on installation currently assigned to this Number.
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}` |
Sid
required
The Twilio-provided string that uniquely identifies the resource to fetch. | `XE${string}` |
Responses
200 application/json
OK
interface ApiV2010AccountIncomingPhoneNumberIncomingPhoneNumberAssignedAddOn {
sid?: `XE${string}` | null;
account_sid?: `AC${string}` | null;
resource_sid?: `PN${string}` | null;
friendly_name?: string | null;
description?: string | null;
configuration?: null;
unique_name?: string | null;
date_created?: string | null;
date_updated?: string | null;
uri?: string | null;
subresource_uris?: {} | null;
}
sid?: `XE${string}` | null;
account_sid?: `AC${string}` | null;
resource_sid?: `PN${string}` | null;
friendly_name?: string | null;
description?: string | null;
configuration?: null;
unique_name?: string | null;
date_created?: string | null;
date_updated?: string | null;
uri?: string | null;
subresource_uris?: {} | null;
}