POST api/CRM/PostCRMContactAuditLog
Request Information
URI Parameters
None.
Body Parameters
CRMContactAuditloginput| Name | Description | Type | Additional information |
|---|---|---|---|
| CAL_ID | integer |
None. |
|
| CAL_CCM_ID | integer |
None. |
|
| CAL_CP_ID | integer |
None. |
|
| CAL_STATUS | string |
None. |
|
| CAL_ASSIGNED_TO | integer |
None. |
|
| CAL_REMARKS | string |
None. |
|
| CAL_CREATED_BY | integer |
None. |
|
| CCM_CONTACT_DETAILS | Collection of CCM_CONTACT_DETAILS |
None. |
Request Formats
application/json, text/json
Sample:
{
"CAL_ID": 1,
"CAL_CCM_ID": 1,
"CAL_CP_ID": 1,
"CAL_STATUS": "sample string 1",
"CAL_ASSIGNED_TO": 1,
"CAL_REMARKS": "sample string 2",
"CAL_CREATED_BY": 1,
"CCM_CONTACT_DETAILS": [
{
"CCM_ID": 1,
"CCM_CONT_NAME": "sample string 1"
},
{
"CCM_ID": 1,
"CCM_CONT_NAME": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<CRMContactAuditloginput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZealitAPI.Models">
<CAL_ASSIGNED_TO>1</CAL_ASSIGNED_TO>
<CAL_CCM_ID>1</CAL_CCM_ID>
<CAL_CP_ID>1</CAL_CP_ID>
<CAL_CREATED_BY>1</CAL_CREATED_BY>
<CAL_ID>1</CAL_ID>
<CAL_REMARKS>sample string 2</CAL_REMARKS>
<CAL_STATUS>sample string 1</CAL_STATUS>
<CCM_CONTACT_DETAILS>
<CCM_CONTACT_DETAILS>
<CCM_CONT_NAME>sample string 1</CCM_CONT_NAME>
<CCM_ID>1</CCM_ID>
</CCM_CONTACT_DETAILS>
<CCM_CONTACT_DETAILS>
<CCM_CONT_NAME>sample string 1</CCM_CONT_NAME>
<CCM_ID>1</CCM_ID>
</CCM_CONTACT_DETAILS>
</CCM_CONTACT_DETAILS>
</CRMContactAuditloginput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |