POST api/Admin/Tenant/Updates/Query?tenantId={tenantId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tenantId

integer

Required

Body Parameters

EInkUpdateRequestDTO
NameDescriptionTypeAdditional 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:08:00.0166769+00:00",
  "ToUtc": "2026-03-04T11:08:00.0166769+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:08:00.0166769+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:08:00.0166769+00:00</ToUtc>
</EInkUpdateRequestDTO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'EInkUpdateRequestDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.