POST api/AirCall?jsonStr={jsonStr}&historyID={historyID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| jsonStr | string |
Required |
|
| historyID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
UpdateHistoryTableModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CallTag | string |
None. |
|
| Comment | string |
None. |
|
| AgentId | string |
None. |
|
| OrderID | integer |
None. |
|
| Activity | Collection of Activity |
None. |
|
| EntityTypeID | integer |
None. |
|
| EntityID | integer |
None. |
|
| UserName | string |
None. |
|
| ActivityID | integer |
None. |
|
| ContactName | string |
None. |
|
| HistoryExtensionID | integer |
None. |
|
| ActivityIDs | string |
None. |
|
| Subject | string |
None. |
|
| TimeLogEntityTypeId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"CallTag": "sample string 1",
"Comment": "sample string 2",
"AgentId": "sample string 3",
"OrderID": 4,
"Activity": null,
"EntityTypeID": 5,
"EntityID": 6,
"UserName": "sample string 7",
"ActivityID": 8,
"ContactName": "sample string 9",
"HistoryExtensionID": 10,
"ActivityIDs": "sample string 11",
"Subject": "sample string 12",
"TimeLogEntityTypeId": 13
}
application/xml, text/xml
Sample:
<UpdateHistoryTableModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TAG.Api.Models"> <Activity i:nil="true" /> <ActivityID>8</ActivityID> <ActivityIDs>sample string 11</ActivityIDs> <AgentId>sample string 3</AgentId> <CallTag>sample string 1</CallTag> <Comment>sample string 2</Comment> <ContactName>sample string 9</ContactName> <EntityID>6</EntityID> <EntityTypeID>5</EntityTypeID> <HistoryExtensionID>10</HistoryExtensionID> <OrderID>4</OrderID> <Subject>sample string 12</Subject> <TimeLogEntityTypeId>13</TimeLogEntityTypeId> <UserName>sample string 7</UserName> </UpdateHistoryTableModel>