POST Dealer/getextcustomeractivityhistory
Get a list of AutoAssistant and GeoAlert activities by FromDateUTC.
Request Information
URI Parameters
None.
Body Parameters
GetExtCustomerActivityHistoryRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| fromDateUTC |
UTC Date/time to filter requests. This date is compared with the InsertDate. |
date |
Required |
| rowLimit |
Optional maximum number of rows to return. Returns first N rows since fromDateUTC. Set value to null or 0 to returrn all rows. |
integer |
None. |
| token |
API access token |
globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"fromDateUTC": "2025-11-18T19:24:12.1602477-08:00",
"rowLimit": 1,
"token": "830b672c-2906-412a-8f40-2b9329a1c5e6"
}
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">830b672c-2906-412a-8f40-2b9329a1c5e6</token> <fromDateUTC>2025-11-18T19:24:12.1602477-08:00</fromDateUTC> <rowLimit>1</rowLimit> </GetExtCustomerActivityHistoryRequest>
Response Information
Resource Description
GetExtCustomerActivityHistoryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| code |
API result code |
integer |
None. |
| error |
API error message |
string |
None. |
| ExtCustomerActivityHistoryList |
Engagement Activity History list |
Collection of ExtCustomerActivityHistoryItem |
None. |
| APIVersion |
API Version |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ExtCustomerActivityHistoryList": [
{
"DealerID": 1,
"EntityID": "e06d76b9-75d8-4ac2-9243-61e04649ed58",
"CustomerID": 2,
"CustomerActivityEventID": 3,
"EventDetails": "sample string 4",
"ActivityDateUTC": "2025-11-18T19:24:12.1642855-08:00"
},
{
"DealerID": 1,
"EntityID": "e06d76b9-75d8-4ac2-9243-61e04649ed58",
"CustomerID": 2,
"CustomerActivityEventID": 3,
"EventDetails": "sample string 4",
"ActivityDateUTC": "2025-11-18T19:24:12.1642855-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-18T19:24:12.1642855-08:00</ActivityDateUTC>
<CustomerActivityEventID>3</CustomerActivityEventID>
<CustomerID>2</CustomerID>
<DealerID>1</DealerID>
<EntityID>e06d76b9-75d8-4ac2-9243-61e04649ed58</EntityID>
<EventDetails>sample string 4</EventDetails>
</ExtCustomerActivityHistoryItem>
<ExtCustomerActivityHistoryItem>
<ActivityDateUTC>2025-11-18T19:24:12.1642855-08:00</ActivityDateUTC>
<CustomerActivityEventID>3</CustomerActivityEventID>
<CustomerID>2</CustomerID>
<DealerID>1</DealerID>
<EntityID>e06d76b9-75d8-4ac2-9243-61e04649ed58</EntityID>
<EventDetails>sample string 4</EventDetails>
</ExtCustomerActivityHistoryItem>
</ExtCustomerActivityHistoryList>
</GetExtCustomerActivityHistoryResponse>