Clients / Phone Numbers / Show
Name | Clients / Phone Numbers / Show |
|---|---|
Description | Display a specific Phone Number for a specific Client |
Type | GET |
URL | /v9/clients/:client_id/phone_numbers/:phone_number_id |
Long Description
Display a specific Phone Number for a specific Client
Parameters
Name | Description | Type | Presence | Location |
|---|---|---|---|---|
| The ID of the specific Client | Integer | required | URI |
| The ID of the specific Phone Number | Integer | required | URI |
Properties
Name | Description | Type |
|---|---|---|
| String|null | |
| Specific extension | String|null |
id | The unique ID of this Phone Number | Integer |
| Arbitrary description, like 'home' or 'office' | String|null |
| The phone number | String |
| Last updated timestamp | Date (ISO_8601) |
| 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"
} |