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-15T17:53:15.2663158-08:00",
"rowLimit": 1,
"token": "236b568e-22eb-4bef-a060-f240d9f4b6f4"
}
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">236b568e-22eb-4bef-a060-f240d9f4b6f4</token> <fromDateUTC>2025-11-15T17:53:15.2663158-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": "dc8e0c00-320c-45b6-b15e-7d1bfd66dec1",
"CustomerID": 2,
"CustomerActivityEventID": 3,
"EventDetails": "sample string 4",
"ActivityDateUTC": "2025-11-15T17:53:15.2713004-08:00"
},
{
"DealerID": 1,
"EntityID": "dc8e0c00-320c-45b6-b15e-7d1bfd66dec1",
"CustomerID": 2,
"CustomerActivityEventID": 3,
"EventDetails": "sample string 4",
"ActivityDateUTC": "2025-11-15T17:53:15.2713004-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-15T17:53:15.2713004-08:00</ActivityDateUTC>
<CustomerActivityEventID>3</CustomerActivityEventID>
<CustomerID>2</CustomerID>
<DealerID>1</DealerID>
<EntityID>dc8e0c00-320c-45b6-b15e-7d1bfd66dec1</EntityID>
<EventDetails>sample string 4</EventDetails>
</ExtCustomerActivityHistoryItem>
<ExtCustomerActivityHistoryItem>
<ActivityDateUTC>2025-11-15T17:53:15.2713004-08:00</ActivityDateUTC>
<CustomerActivityEventID>3</CustomerActivityEventID>
<CustomerID>2</CustomerID>
<DealerID>1</DealerID>
<EntityID>dc8e0c00-320c-45b6-b15e-7d1bfd66dec1</EntityID>
<EventDetails>sample string 4</EventDetails>
</ExtCustomerActivityHistoryItem>
</ExtCustomerActivityHistoryList>
</GetExtCustomerActivityHistoryResponse>