POST Dealer/getextcustomeractivityhistory
Get a list of AutoAssistant and GeoAlert activities by FromDateUTC.
Request Information
URI Parameters
None.
Body Parameters
GetExtCustomerActivityHistoryRequestName | 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-04-25T09:21:38.1425612-07:00", "rowLimit": 1, "token": "63e94cc7-7abd-42af-a891-37e4fdf520ce" }
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">63e94cc7-7abd-42af-a891-37e4fdf520ce</token> <fromDateUTC>2025-04-25T09:21:38.1425612-07:00</fromDateUTC> <rowLimit>1</rowLimit> </GetExtCustomerActivityHistoryRequest>
Response Information
Resource Description
GetExtCustomerActivityHistoryResponseName | 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": "60a1506b-c8c2-426e-9211-b5d2df35b77c", "CustomerID": 2, "CustomerActivityEventID": 3, "EventDetails": "sample string 4", "ActivityDateUTC": "2025-04-25T09:21:38.1475552-07:00" }, { "DealerID": 1, "EntityID": "60a1506b-c8c2-426e-9211-b5d2df35b77c", "CustomerID": 2, "CustomerActivityEventID": 3, "EventDetails": "sample string 4", "ActivityDateUTC": "2025-04-25T09:21:38.1475552-07: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-04-25T09:21:38.1475552-07:00</ActivityDateUTC> <CustomerActivityEventID>3</CustomerActivityEventID> <CustomerID>2</CustomerID> <DealerID>1</DealerID> <EntityID>60a1506b-c8c2-426e-9211-b5d2df35b77c</EntityID> <EventDetails>sample string 4</EventDetails> </ExtCustomerActivityHistoryItem> <ExtCustomerActivityHistoryItem> <ActivityDateUTC>2025-04-25T09:21:38.1475552-07:00</ActivityDateUTC> <CustomerActivityEventID>3</CustomerActivityEventID> <CustomerID>2</CustomerID> <DealerID>1</DealerID> <EntityID>60a1506b-c8c2-426e-9211-b5d2df35b77c</EntityID> <EventDetails>sample string 4</EventDetails> </ExtCustomerActivityHistoryItem> </ExtCustomerActivityHistoryList> </GetExtCustomerActivityHistoryResponse>