Clients / Phone Numbers / Update
Long Description
Update an existing phone number for an existing client.
Parameters
Name | Description | Type | Presence | Location | Limitations |
---|---|---|---|---|---|
client_id | The ID of the specific Client | Integer | Required | URI | |
phone_number_id | The ID of the specific Phone Number | Integer | Required | URI | |
number | The phone number | String | Required | Body | |
| The country calling code | String | Optional | Body | |
extension | Specific extension | String | Optional | Body | |
label | A label to associate with this phone number | String | Optional | Body | 20 characters max |
Examples
Request | Response |
---|---|
/v9/clients/:client_id/phone_numbers/:phone_number_id | |
{ "label": "Work", "country_code": "+1", "number": "(504) 555-1212", "extension": "71" } | { "phone_numbers":[ { "label":"Work", "number":"(504) 555-1212", "country_code":"+1", "extension":"71", "updated_at":"2014-02-05T16:00:48Z", "url":"/clients/109402/phone_numbers/145996", "id":"145996" } ] } |