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-07-02T20:38:07.7784457-07:00", "rowLimit": 1, "token": "ccbf0c58-032e-4343-9a86-4fa357a5506d" }
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">ccbf0c58-032e-4343-9a86-4fa357a5506d</token> <fromDateUTC>2025-07-02T20:38:07.7784457-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": "b629f57e-507b-4942-9164-40788f45d334", "CustomerID": 2, "CustomerActivityEventID": 3, "EventDetails": "sample string 4", "ActivityDateUTC": "2025-07-02T20:38:07.7824724-07:00" }, { "DealerID": 1, "EntityID": "b629f57e-507b-4942-9164-40788f45d334", "CustomerID": 2, "CustomerActivityEventID": 3, "EventDetails": "sample string 4", "ActivityDateUTC": "2025-07-02T20:38:07.7824724-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-07-02T20:38:07.7824724-07:00</ActivityDateUTC> <CustomerActivityEventID>3</CustomerActivityEventID> <CustomerID>2</CustomerID> <DealerID>1</DealerID> <EntityID>b629f57e-507b-4942-9164-40788f45d334</EntityID> <EventDetails>sample string 4</EventDetails> </ExtCustomerActivityHistoryItem> <ExtCustomerActivityHistoryItem> <ActivityDateUTC>2025-07-02T20:38:07.7824724-07:00</ActivityDateUTC> <CustomerActivityEventID>3</CustomerActivityEventID> <CustomerID>2</CustomerID> <DealerID>1</DealerID> <EntityID>b629f57e-507b-4942-9164-40788f45d334</EntityID> <EventDetails>sample string 4</EventDetails> </ExtCustomerActivityHistoryItem> </ExtCustomerActivityHistoryList> </GetExtCustomerActivityHistoryResponse>