POST Dealer/getextcustomeractivityhistory

Get a list of AutoAssistant and GeoAlert activities by FromDateUTC.

Request Information

URI Parameters

None.

Body Parameters

GetExtCustomerActivityHistoryRequest
NameDescriptionTypeAdditional 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": "2024-10-23T06:46:09.400654-07:00",
  "rowLimit": 1,
  "token": "56192135-f71d-4887-a34f-19474bbe02fe"
}

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">56192135-f71d-4887-a34f-19474bbe02fe</token>
  <fromDateUTC>2024-10-23T06:46:09.400654-07:00</fromDateUTC>
  <rowLimit>1</rowLimit>
</GetExtCustomerActivityHistoryRequest>

Response Information

Resource Description

GetExtCustomerActivityHistoryResponse
NameDescriptionTypeAdditional 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": "0ed99ff2-7372-4d35-a466-aea7f91e275d",
      "CustomerID": 2,
      "CustomerActivityEventID": 3,
      "EventDetails": "sample string 4",
      "ActivityDateUTC": "2024-10-23T06:46:09.403654-07:00"
    },
    {
      "DealerID": 1,
      "EntityID": "0ed99ff2-7372-4d35-a466-aea7f91e275d",
      "CustomerID": 2,
      "CustomerActivityEventID": 3,
      "EventDetails": "sample string 4",
      "ActivityDateUTC": "2024-10-23T06:46:09.403654-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>2024-10-23T06:46:09.403654-07:00</ActivityDateUTC>
      <CustomerActivityEventID>3</CustomerActivityEventID>
      <CustomerID>2</CustomerID>
      <DealerID>1</DealerID>
      <EntityID>0ed99ff2-7372-4d35-a466-aea7f91e275d</EntityID>
      <EventDetails>sample string 4</EventDetails>
    </ExtCustomerActivityHistoryItem>
    <ExtCustomerActivityHistoryItem>
      <ActivityDateUTC>2024-10-23T06:46:09.403654-07:00</ActivityDateUTC>
      <CustomerActivityEventID>3</CustomerActivityEventID>
      <CustomerID>2</CustomerID>
      <DealerID>1</DealerID>
      <EntityID>0ed99ff2-7372-4d35-a466-aea7f91e275d</EntityID>
      <EventDetails>sample string 4</EventDetails>
    </ExtCustomerActivityHistoryItem>
  </ExtCustomerActivityHistoryList>
</GetExtCustomerActivityHistoryResponse>