GET v1/VoipCalls/{VoipCallId}
Get detailed information about an VoipCall.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| VoipCallId |
The id of the VoipCall. |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
The VoipCall object.
VoipCall| Name | Description | Type | Additional information |
|---|---|---|---|
| Source |
Gets or sets the source. |
string |
Max length: 50 |
| Destination |
Gets or sets the destination. |
string |
Max length: 50 |
| PbxUniqueId |
Gets or sets the PBX (private branch exchange) unique identifier. |
string |
Max length: 50 |
| Note |
Gets or sets the note. |
string |
Max length: 2147483647 |
| Categories |
Gets or sets the list of the categories. |
Collection of MessageCategory |
None. |
| EmployeeId |
Gets or sets the employee identifier. |
integer |
None. |
| CustomerId |
Gets or sets the customer identifier. |
integer |
None. |
| OrderId |
Gets or sets the order identifier. |
integer |
None. |
| Id |
Gets or sets the identifier. |
integer |
Required |
| ShopId |
Gets or sets the shop identifier. |
integer |
Required |
| StartTimestamp |
Gets or sets the start timestamp. |
date |
Required |
| DurationSec |
Gets or sets the duration seconds. |
integer |
Required |
| CallType |
Gets or sets the Call type. |
CallTypeEnum |
Required |
| OrderCode |
Gets or sets the order code. |
string |
None. |
| DispositionId |
Gets or sets the disposition identifier. |
integer |
Required |
| Handled |
Indication if call was marked Handled by employee |
boolean |
Required |
Response Formats
application/json, text/json
{
"Source": "sample string 1",
"Destination": "sample string 2",
"PbxUniqueId": "sample string 3",
"Note": "sample string 4",
"Categories": null,
"EmployeeId": 1,
"CustomerId": 1,
"OrderId": 1,
"Id": 5,
"ShopId": 6,
"StartTimestamp": "2026-01-11T16:15:00.2163281+01:00",
"DurationSec": 8,
"CallType": 0,
"OrderCode": "sample string 9",
"DispositionId": 10,
"Handled": true
}