POST api/phone/journal
Request Information
URI Parameters
None.
Body Parameters
PhoneJournalRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| callType | string |
None. |
|
| number | string |
None. |
|
| duration | string |
None. |
|
| callStartTimeLocal | string |
None. |
|
| callEndTimeLocal | string |
None. |
|
| agent | string |
None. |
|
| agentFirstName | string |
None. |
|
| agentLastName | string |
None. |
|
| agentEmail | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"callType": "sample string 1",
"number": "sample string 2",
"duration": "sample string 3",
"callStartTimeLocal": "sample string 4",
"callEndTimeLocal": "sample string 5",
"agent": "sample string 6",
"agentFirstName": "sample string 7",
"agentLastName": "sample string 8",
"agentEmail": "sample string 9"
}
application/xml, text/xml
Sample:
<PhoneJournalRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATRonicLayer.BO"> <agent>sample string 6</agent> <agentEmail>sample string 9</agentEmail> <agentFirstName>sample string 7</agentFirstName> <agentLastName>sample string 8</agentLastName> <callEndTimeLocal>sample string 5</callEndTimeLocal> <callStartTimeLocal>sample string 4</callStartTimeLocal> <callType>sample string 1</callType> <duration>sample string 3</duration> <number>sample string 2</number> </PhoneJournalRequest>
Response Information
Resource Description
PhoneJournalResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1
}
application/xml, text/xml
Sample:
<PhoneJournalResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATRonicLayer.BO"> <Id>1</Id> </PhoneJournalResponse>