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": "2026-04-24T15:25:18.4335773-07:00",
"rowLimit": 1,
"token": "8bad0bae-0c85-4a4f-9bf1-df5f67e7c53a"
}
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">8bad0bae-0c85-4a4f-9bf1-df5f67e7c53a</token> <fromDateUTC>2026-04-24T15:25:18.4335773-07: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": "9fba3c28-ef2b-404a-a2fd-de90ca79e6e0",
"CustomerID": 2,
"CustomerActivityEventID": 3,
"EventDetails": "sample string 4",
"ActivityDateUTC": "2026-04-24T15:25:18.7326573-07:00"
},
{
"DealerID": 1,
"EntityID": "9fba3c28-ef2b-404a-a2fd-de90ca79e6e0",
"CustomerID": 2,
"CustomerActivityEventID": 3,
"EventDetails": "sample string 4",
"ActivityDateUTC": "2026-04-24T15:25:18.7326573-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>2026-04-24T15:25:18.7326573-07:00</ActivityDateUTC>
<CustomerActivityEventID>3</CustomerActivityEventID>
<CustomerID>2</CustomerID>
<DealerID>1</DealerID>
<EntityID>9fba3c28-ef2b-404a-a2fd-de90ca79e6e0</EntityID>
<EventDetails>sample string 4</EventDetails>
</ExtCustomerActivityHistoryItem>
<ExtCustomerActivityHistoryItem>
<ActivityDateUTC>2026-04-24T15:25:18.7326573-07:00</ActivityDateUTC>
<CustomerActivityEventID>3</CustomerActivityEventID>
<CustomerID>2</CustomerID>
<DealerID>1</DealerID>
<EntityID>9fba3c28-ef2b-404a-a2fd-de90ca79e6e0</EntityID>
<EventDetails>sample string 4</EventDetails>
</ExtCustomerActivityHistoryItem>
</ExtCustomerActivityHistoryList>
</GetExtCustomerActivityHistoryResponse>