Clients / Phone Numbers / Show
Long Description
Display a specific Phone Number for a specific Client
Parameters
Name | Description | Type | Presence | Location |
---|---|---|---|---|
client_id | The ID of the specific Client | Integer | required | URI |
phone_number_id | The ID of the specific Phone Number | Integer | required | URI |
Properties
Name | Description | Type |
---|---|---|
country_code | The country calling code | String|null |
extension | Specific extension | String|null |
id | The unique ID of this Phone Number | Integer |
label | Arbitrary description, like 'home' or 'office' | String|null |
number | The phone number | String |
updated_at | Last updated timestamp | Date (ISO_8601) |
url | The unique URL for this client | String |
Examples
Request | Response |
---|---|
GET /v9/clients/109402/phone_numbers/229514 | { "country_code": "+1", "extension": "102", "id": "229514", "label": "Work", "number": "(480) 555-1212", "updated_at": "2014-08-08T21:39:51Z", "url": "/clients/109402/phone_numbers/229514" } |