POST Entity/getallentities
Request Information
URI Parameters
None.
Body Parameters
GetAllEntitiesRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| fromDateUTC | date |
Required |
|
| rowLimit | integer |
Required |
|
| lastEntityID | globally unique identifier |
Required |
|
| token | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"fromDateUTC": "2026-02-06T12:59:32.9878735-08:00",
"rowLimit": 2,
"lastEntityID": "6d1ef096-fdbb-4d8a-aba6-d2a9c9e0e2e1",
"token": "ea8628a9-c587-4c15-8262-31eaf24a5277"
}
application/xml, text/xml
Sample:
<GetAllEntitiesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.Entity"> <token xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models">ea8628a9-c587-4c15-8262-31eaf24a5277</token> <fromDateUTC>2026-02-06T12:59:32.9878735-08:00</fromDateUTC> <lastEntityID>6d1ef096-fdbb-4d8a-aba6-d2a9c9e0e2e1</lastEntityID> <rowLimit>2</rowLimit> </GetAllEntitiesRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetAllEntitiesResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| error | string |
None. |
|
| EntityList | Collection of EntityItem |
None. |
|
| APIVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"EntityList": [
{
"EntityID": "af7e8480-4d23-4d1d-908c-583af9226266",
"EntityInsertDate": "2026-02-06T12:59:33.2914074-08:00",
"CustomerID": 3,
"VehicleID": 4,
"VIN": "sample string 5",
"SaleRODate": "2026-02-06T12:59:33.2914074-08:00",
"IsConquest": true,
"VHash": "sample string 8",
"DMSDealID": "sample string 9"
},
{
"EntityID": "af7e8480-4d23-4d1d-908c-583af9226266",
"EntityInsertDate": "2026-02-06T12:59:33.2914074-08:00",
"CustomerID": 3,
"VehicleID": 4,
"VIN": "sample string 5",
"SaleRODate": "2026-02-06T12:59:33.2914074-08:00",
"IsConquest": true,
"VHash": "sample string 8",
"DMSDealID": "sample string 9"
}
],
"APIVersion": 1,
"code": 200,
"error": "sample string 1"
}
application/xml, text/xml
Sample:
<GetAllEntitiesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.Entity">
<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>
<EntityList>
<EntityItem>
<CustomerID>3</CustomerID>
<DMSDealID>sample string 9</DMSDealID>
<EntityID>af7e8480-4d23-4d1d-908c-583af9226266</EntityID>
<EntityInsertDate>2026-02-06T12:59:33.2914074-08:00</EntityInsertDate>
<IsConquest>true</IsConquest>
<SaleRODate>2026-02-06T12:59:33.2914074-08:00</SaleRODate>
<VHash>sample string 8</VHash>
<VIN>sample string 5</VIN>
<VehicleID>4</VehicleID>
</EntityItem>
<EntityItem>
<CustomerID>3</CustomerID>
<DMSDealID>sample string 9</DMSDealID>
<EntityID>af7e8480-4d23-4d1d-908c-583af9226266</EntityID>
<EntityInsertDate>2026-02-06T12:59:33.2914074-08:00</EntityInsertDate>
<IsConquest>true</IsConquest>
<SaleRODate>2026-02-06T12:59:33.2914074-08:00</SaleRODate>
<VHash>sample string 8</VHash>
<VIN>sample string 5</VIN>
<VehicleID>4</VehicleID>
</EntityItem>
</EntityList>
</GetAllEntitiesResponse>