Search + K

Command Palette

Search for a command to run...

Sign In

Retrieve a list of Add-on installations currently assigned to this Number.

GET /2010-04-01/Accounts/{AccountSid}/IncomingPhoneNumbers/{ResourceSid}/AssignedAddOns.json
Copy endpoint
https://api.twilio.com

Retrieve a list of Add-on installations currently assigned to this Number.

Parameters

path Path Parameters

Name Type
AccountSid required

The SID of the Account that created the resources to read.

`AC${string}`
ResourceSid required

The SID of the Phone Number to which the Add-on is assigned.

`PN${string}`

query Query Parameters

Name Type
PageSize

How many resources to return in each list page. The default is 50, and the maximum is 1000.

number
Page

The page index. This value is simply for client state.

number
PageToken

The page token. This is provided by the API.

string

Responses

200 application/json

OK

{
assigned_add_ons?: ApiV2010AccountIncomingPhoneNumberIncomingPhoneNumberAssignedAddOn
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;
}
[]
;
end?: number;
first_page_uri?: string;
next_page_uri?: string | null;
page?: number;
page_size?: number;
previous_page_uri?: string | null;
start?: number;
uri?: string;
}