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-03-11T02:12:25.0124244-07:00",
"rowLimit": 2,
"lastEntityID": "449fac92-de43-41be-b9ce-5b34f978d5ec",
"token": "a868db81-45e6-47fa-9af8-4cd5812e24c1"
}
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">a868db81-45e6-47fa-9af8-4cd5812e24c1</token> <fromDateUTC>2026-03-11T02:12:25.0124244-07:00</fromDateUTC> <lastEntityID>449fac92-de43-41be-b9ce-5b34f978d5ec</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": "ff182b29-caef-42c4-8430-a81c7a174b3e",
"EntityInsertDate": "2026-03-11T02:12:25.0124244-07:00",
"CustomerID": 3,
"VehicleID": 4,
"VIN": "sample string 5",
"SaleRODate": "2026-03-11T02:12:25.0124244-07:00",
"IsConquest": true,
"VHash": "sample string 8",
"DMSDealID": "sample string 9"
},
{
"EntityID": "ff182b29-caef-42c4-8430-a81c7a174b3e",
"EntityInsertDate": "2026-03-11T02:12:25.0124244-07:00",
"CustomerID": 3,
"VehicleID": 4,
"VIN": "sample string 5",
"SaleRODate": "2026-03-11T02:12:25.0124244-07: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>ff182b29-caef-42c4-8430-a81c7a174b3e</EntityID>
<EntityInsertDate>2026-03-11T02:12:25.0124244-07:00</EntityInsertDate>
<IsConquest>true</IsConquest>
<SaleRODate>2026-03-11T02:12:25.0124244-07: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>ff182b29-caef-42c4-8430-a81c7a174b3e</EntityID>
<EntityInsertDate>2026-03-11T02:12:25.0124244-07:00</EntityInsertDate>
<IsConquest>true</IsConquest>
<SaleRODate>2026-03-11T02:12:25.0124244-07:00</SaleRODate>
<VHash>sample string 8</VHash>
<VIN>sample string 5</VIN>
<VehicleID>4</VehicleID>
</EntityItem>
</EntityList>
</GetAllEntitiesResponse>