Available Operations
Authentication
| Key | Description | Where | Example |
|---|---|---|---|
| Authorization | Your OAuth token. | Headers | Bearer <access_token> |
Query Parameters
Filter records by start date (greater equal or equal to) [yyyy-MM-dd HH:mm:ss in UTC]
Filter records by start date (less equal or equal to) [yyyy-MM-dd HH:mm:ss in UTC]
Filter records by end date (greater equal or equal to) [yyyy-MM-dd HH:mm:ss in UTC]
Filter records by end date (less equal or equal to) [yyyy-MM-dd HH:mm:ss in UTC]
10Number of records per page
1Current page number
Filter by called number
Filter by source number
Filter by source user
Filter by destination user
Filter by call direction.
InboundOutbound10Number of records per page
1Current page number
10Total number of pages
100Total number of records
URL to the first page of records
URL to the previous page of records
URL to the current page of records
URL to the next page of records
f27b937d-6dde-441a-9595-006e7302eac1Unique identifier of the call
trueIndicates if call was on/off network
Indicates if call was international
17325550100Source number of the call
17325550100Destination number of the call
InboundDirection of the call
60Duration of the call in seconds
2019-01-01 00:00:00Start time of the call
2019-01-01 00:00:00End time of the call
Amount charged for the call
Rate charged for the call
SmithName of the destination device of the call
John SmithFull name of the destination user of the call
JSmithDestination user of the call
VH1111111SIP ID of the destination device of the call
1000Destination extension of the call
SmithName of the source device of the call
John SmithFull name of the source user of the call
JSmithSource user of the call
SalesCustom tag added to caller id
VH1111111SIP ID of the source device of the call
1000Source extension of the call
AnsweredResult of the call
trueIndicates if call was recorded
Example Response
{
"page_size": 10,
"page": 1,
"total_pages": 10,
"total_items": 100,
"_links": {
"first": {
"href": "string"
},
"prev": {
"href": "string"
},
"self": {
"href": "string"
},
"next": {
"href": "string"
}
},
"_embedded": {
"call_logs": [
{
"id": "f27b937d-6dde-441a-9595-006e7302eac1",
"in_network": true,
"international": false,
"from": 17325550100,
"to": 17325550100,
"direction": "Inbound",
"length": 60,
"start": "2019-01-01 00:00:00",
"end": "2019-01-01 00:00:00",
"charge": 0,
"rate": 0,
"destination_device_name": "Smith",
"destination_user_full_name": "John Smith",
"destination_user": "JSmith",
"destination_sip_id": "VH1111111",
"destination_extension": 1000,
"source_device_name": "Smith",
"source_user_full_name": "John Smith",
"source_user": "JSmith",
"custom_tag": "Sales",
"source_sip_id": "VH1111111",
"source_extension": 1000,
"result": "Answered",
"recorded": true
}
]
}
}