POST Dealer/getextcustomeractivityhistory

Request Information

URI Parameters

None.

Body Parameters

GetExtCustomerActivityHistoryRequest
NameDescriptionTypeAdditional information
fromDateUTC

date

Required

rowLimit

integer

None.

token

globally unique identifier

Required

Request Formats

application/json, text/json

Sample:
{
  "fromDateUTC": "2025-12-02T11:22:26.4881512-08:00",
  "rowLimit": 1,
  "token": "ea2ca367-db1d-49d4-96a1-a60c6be74fea"
}

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">ea2ca367-db1d-49d4-96a1-a60c6be74fea</token>
  <fromDateUTC>2025-12-02T11:22:26.4881512-08:00</fromDateUTC>
  <rowLimit>1</rowLimit>
</GetExtCustomerActivityHistoryRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetExtCustomerActivityHistoryResponse
NameDescriptionTypeAdditional 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": "083a562f-ecaa-4187-8b08-1e0614f1969a",
      "CustomerID": 2,
      "CustomerActivityEventID": 3,
      "EventDetails": "sample string 4",
      "ActivityDateUTC": "2025-12-02T11:22:26.4881512-08:00"
    },
    {
      "DealerID": 1,
      "EntityID": "083a562f-ecaa-4187-8b08-1e0614f1969a",
      "CustomerID": 2,
      "CustomerActivityEventID": 3,
      "EventDetails": "sample string 4",
      "ActivityDateUTC": "2025-12-02T11:22:26.4881512-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-12-02T11:22:26.4881512-08:00</ActivityDateUTC>
      <CustomerActivityEventID>3</CustomerActivityEventID>
      <CustomerID>2</CustomerID>
      <DealerID>1</DealerID>
      <EntityID>083a562f-ecaa-4187-8b08-1e0614f1969a</EntityID>
      <EventDetails>sample string 4</EventDetails>
    </ExtCustomerActivityHistoryItem>
    <ExtCustomerActivityHistoryItem>
      <ActivityDateUTC>2025-12-02T11:22:26.4881512-08:00</ActivityDateUTC>
      <CustomerActivityEventID>3</CustomerActivityEventID>
      <CustomerID>2</CustomerID>
      <DealerID>1</DealerID>
      <EntityID>083a562f-ecaa-4187-8b08-1e0614f1969a</EntityID>
      <EventDetails>sample string 4</EventDetails>
    </ExtCustomerActivityHistoryItem>
  </ExtCustomerActivityHistoryList>
</GetExtCustomerActivityHistoryResponse>