POST api/AddressBook/AddCallCenterLogs
Request Information
URI Parameters
None.
Body Parameters
Collection of CallCenterLogDTO| Name | Description | Type | Additional information | 
|---|---|---|---|
| StartDateTime | date | None. | |
| CallDuration | integer | None. | |
| ToPhoneNumber | string | None. | |
| RetailerId | integer | None. | |
| Name | string | None. | |
| Type | string | None. | |
| FromPhNo | string | None. | 
Request Formats
application/json, text/json
            Sample:
        
[
  {
    "StartDateTime": "2025-10-31T15:47:30.0566276+00:00",
    "CallDuration": 2,
    "ToPhoneNumber": "sample string 3",
    "RetailerId": 4,
    "Name": "sample string 5",
    "Type": "sample string 6",
    "FromPhNo": "sample string 7"
  },
  {
    "StartDateTime": "2025-10-31T15:47:30.0566276+00:00",
    "CallDuration": 2,
    "ToPhoneNumber": "sample string 3",
    "RetailerId": 4,
    "Name": "sample string 5",
    "Type": "sample string 6",
    "FromPhNo": "sample string 7"
  }
]
        application/xml, text/xml
            Sample:
        
<ArrayOfCallCenterLogDTO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <CallCenterLogDTO>
    <StartDateTime>2025-10-31T15:47:30.0566276+00:00</StartDateTime>
    <CallDuration>2</CallDuration>
    <ToPhoneNumber>sample string 3</ToPhoneNumber>
    <RetailerId>4</RetailerId>
    <Name>sample string 5</Name>
    <Type>sample string 6</Type>
    <FromPhNo>sample string 7</FromPhNo>
  </CallCenterLogDTO>
  <CallCenterLogDTO>
    <StartDateTime>2025-10-31T15:47:30.0566276+00:00</StartDateTime>
    <CallDuration>2</CallDuration>
    <ToPhoneNumber>sample string 3</ToPhoneNumber>
    <RetailerId>4</RetailerId>
    <Name>sample string 5</Name>
    <Type>sample string 6</Type>
    <FromPhNo>sample string 7</FromPhNo>
  </CallCenterLogDTO>
</ArrayOfCallCenterLogDTO>
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
VCAPIResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| Version | string | None. | |
| dateTime | string | None. | |
| StatusCode | integer | None. | |
| ErrorMessage | string | None. | |
| Result | Object | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Version": "1.0.0",
  "dateTime": "2025/10/31 15:47:30",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}
        application/xml, text/xml
            Sample:
<VCAPIResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <StatusCode>1</StatusCode> <ErrorMessage>sample string 2</ErrorMessage> <Result /> </VCAPIResponse>