POST Dealer/getextcustomeractivityhistory
Request Information
URI Parameters
None.
Body Parameters
GetExtCustomerActivityHistoryRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| fromDateUTC | date |
Required |
|
| rowLimit | integer |
None. |
|
| token | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"fromDateUTC": "2025-11-22T19:59:00.1196418-08:00",
"rowLimit": 1,
"token": "6400aa3e-9624-4f15-8172-a3070a8f1fbd"
}
application/xml, text/xml
Sample:
<GetExtCustomerActivityHistoryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.Dealer"> <token xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models">6400aa3e-9624-4f15-8172-a3070a8f1fbd</token> <fromDateUTC>2025-11-22T19:59:00.1196418-08:00</fromDateUTC> <rowLimit>1</rowLimit> </GetExtCustomerActivityHistoryRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetExtCustomerActivityHistoryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| error | string |
None. |
|
| ExtCustomerActivityHistoryList | Collection of ExtCustomerActivityHistoryItem |
None. |
|
| APIVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ExtCustomerActivityHistoryList": [
{
"DealerID": 1,
"EntityID": "be6b1eb5-4ad0-4c95-a105-6db40b293258",
"CustomerID": 2,
"CustomerActivityEventID": 3,
"EventDetails": "sample string 4",
"ActivityDateUTC": "2025-11-22T19:59:00.1296852-08:00"
},
{
"DealerID": 1,
"EntityID": "be6b1eb5-4ad0-4c95-a105-6db40b293258",
"CustomerID": 2,
"CustomerActivityEventID": 3,
"EventDetails": "sample string 4",
"ActivityDateUTC": "2025-11-22T19:59:00.1296852-08:00"
}
],
"APIVersion": 1,
"code": 200,
"error": "sample string 1"
}
application/xml, text/xml
Sample:
<GetExtCustomerActivityHistoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.Dealer">
<APIVersion xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API">1</APIVersion>
<error xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API">sample string 1</error>
<ExtCustomerActivityHistoryList>
<ExtCustomerActivityHistoryItem>
<ActivityDateUTC>2025-11-22T19:59:00.1296852-08:00</ActivityDateUTC>
<CustomerActivityEventID>3</CustomerActivityEventID>
<CustomerID>2</CustomerID>
<DealerID>1</DealerID>
<EntityID>be6b1eb5-4ad0-4c95-a105-6db40b293258</EntityID>
<EventDetails>sample string 4</EventDetails>
</ExtCustomerActivityHistoryItem>
<ExtCustomerActivityHistoryItem>
<ActivityDateUTC>2025-11-22T19:59:00.1296852-08:00</ActivityDateUTC>
<CustomerActivityEventID>3</CustomerActivityEventID>
<CustomerID>2</CustomerID>
<DealerID>1</DealerID>
<EntityID>be6b1eb5-4ad0-4c95-a105-6db40b293258</EntityID>
<EventDetails>sample string 4</EventDetails>
</ExtCustomerActivityHistoryItem>
</ExtCustomerActivityHistoryList>
</GetExtCustomerActivityHistoryResponse>