GET Phones/{id}
Get phone by ID
Returns
HTTP 200, 404
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | Phone ID |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json, text/html
Sample:
{
"ID": 1,
"PoolID": 2,
"Number": "1300123456",
"DestinationNumber": "0212345678",
"Status": "2",
"CombinedTrackingSource": "Direct",
"Country": null,
"State": null
}
application/xml, text/xml
Sample:
<ApiPhone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CallTracker.Api.Models"> <CombinedTrackingSource>Direct</CombinedTrackingSource> <Country i:nil="true" /> <DestinationNumber>0212345678</DestinationNumber> <ID>1</ID> <Number>1300123456</Number> <PoolID>2</PoolID> <State i:nil="true" /> <Status>2</Status> </ApiPhone>