POST api/Admin/Tenant/Updates/Query?tenantId={tenantId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tenantId | integer |
Required |
Body Parameters
EInkUpdateRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| LocationId | integer |
None. |
|
| SerialNumber | string |
None. |
|
| FromUtc | date |
None. |
|
| ToUtc | date |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
|
| OnlyFailures | boolean |
None. |
|
| OnlyCompleted | boolean |
None. |
|
| OnlyPending | boolean |
None. |
|
| IncludePayloadJson | boolean |
None. |
|
| IncludeResponseJson | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"LocationId": 1,
"SerialNumber": "sample string 1",
"FromUtc": "2026-03-04T11:56:37.7854518+00:00",
"ToUtc": "2026-03-04T11:56:37.7854518+00:00",
"Skip": 2,
"Take": 3,
"OnlyFailures": true,
"OnlyCompleted": true,
"OnlyPending": true,
"IncludePayloadJson": true,
"IncludeResponseJson": true
}
application/xml, text/xml
Sample:
<EInkUpdateRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bluedock.Booking.Rest.BusinessObjects"> <FromUtc>2026-03-04T11:56:37.7854518+00:00</FromUtc> <IncludePayloadJson>true</IncludePayloadJson> <IncludeResponseJson>true</IncludeResponseJson> <LocationId>1</LocationId> <OnlyCompleted>true</OnlyCompleted> <OnlyFailures>true</OnlyFailures> <OnlyPending>true</OnlyPending> <SerialNumber>sample string 1</SerialNumber> <Skip>2</Skip> <Take>3</Take> <ToUtc>2026-03-04T11:56:37.7854518+00:00</ToUtc> </EInkUpdateRequestDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.