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": "2025-12-08T10:18:33.494666-08:00",
"rowLimit": 2,
"lastEntityID": "4a2ab7ae-ad73-4b12-a55a-fe264d45a8d0",
"token": "051003eb-c0c9-465e-9a73-fbbc7d24aac7"
}
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">051003eb-c0c9-465e-9a73-fbbc7d24aac7</token> <fromDateUTC>2025-12-08T10:18:33.494666-08:00</fromDateUTC> <lastEntityID>4a2ab7ae-ad73-4b12-a55a-fe264d45a8d0</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": "3a188c71-7839-4db8-b0e5-45bd814fbd32",
"EntityInsertDate": "2025-12-08T10:18:33.5087969-08:00",
"CustomerID": 3,
"VehicleID": 4,
"VIN": "sample string 5",
"SaleRODate": "2025-12-08T10:18:33.5087969-08:00",
"IsConquest": true,
"VHash": "sample string 8",
"DMSDealID": "sample string 9"
},
{
"EntityID": "3a188c71-7839-4db8-b0e5-45bd814fbd32",
"EntityInsertDate": "2025-12-08T10:18:33.5087969-08:00",
"CustomerID": 3,
"VehicleID": 4,
"VIN": "sample string 5",
"SaleRODate": "2025-12-08T10:18:33.5087969-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>3a188c71-7839-4db8-b0e5-45bd814fbd32</EntityID>
<EntityInsertDate>2025-12-08T10:18:33.5087969-08:00</EntityInsertDate>
<IsConquest>true</IsConquest>
<SaleRODate>2025-12-08T10:18:33.5087969-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>3a188c71-7839-4db8-b0e5-45bd814fbd32</EntityID>
<EntityInsertDate>2025-12-08T10:18:33.5087969-08:00</EntityInsertDate>
<IsConquest>true</IsConquest>
<SaleRODate>2025-12-08T10:18:33.5087969-08:00</SaleRODate>
<VHash>sample string 8</VHash>
<VIN>sample string 5</VIN>
<VehicleID>4</VehicleID>
</EntityItem>
</EntityList>
</GetAllEntitiesResponse>