Update a specific Proxy Number
TODO: Resource-level docs
Update a specific Proxy Number.
Path parameters
-
The SID of the parent Service of the PhoneNumber resource to update.
-
The Twilio-provided string that uniquely identifies the PhoneNumber resource to update.
Body
-
IsReserved boolean
Whether the phone number should be reserved and not be assigned to a participant using proxy pool logic. See Reserved Phone Numbers for more information.
POST /v1/Services/{ServiceSid}/PhoneNumbers/{Sid}
curl \
-X POST https://proxy.twilio.com/v1/Services/{ServiceSid}/PhoneNumbers/{Sid} \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'IsReserved=true'
Request example
{
"IsReserved": true
}
Request examples
{
"IsReserved": true
}
Response examples (200)
{
"account_sid": "string",
"capabilities": {
"fax": true,
"mms": true,
"sms": true,
"voice": true
},
"date_created": "2023-05-04T09:42:00+00:00",
"date_updated": "2023-05-04T09:42:00+00:00",
"friendly_name": "string",
"in_use": 42,
"is_reserved": true,
"iso_country": "string",
"phone_number": "string",
"service_sid": "string",
"sid": "string",
"url": "https://example.com"
}
Response examples (200)
{
"account_sid": "string",
"capabilities": {
"fax": true,
"mms": true,
"sms": true,
"voice": true
},
"date_created": "2024-05-04T09:42:00+00:00",
"date_updated": "2024-05-04T09:42:00+00:00",
"friendly_name": "string",
"in_use": 42,
"is_reserved": true,
"iso_country": "string",
"phone_number": "string",
"service_sid": "string",
"sid": "string",
"url": "https://example.com"
}