POST api/Reports/BookingRequests?start={start}&end={end}&reportType={reportType}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
start

date

Required

end

date

Required

reportType

string

Required

Body Parameters

None.

Response Information

Resource Description

ReportStatus
NameDescriptionTypeAdditional information
Identity

globally unique identifier

None.

Started

date

None.

Completed

date

None.

IsReady

boolean

None.

ReportTypeName

string

None.

RequestedBy

string

None.

DownloadLinkUri

URI

None.

DownloadToken

globally unique identifier

None.

Parameters

Dictionary of string [key] and Object [value]

None.

Response Formats

application/json, text/json

Sample:
{
  "Identity": "a4ce97ee-7f48-464b-b9f4-3d1a9990910c",
  "Started": "2025-03-31T05:02:18.9246991+00:00",
  "Completed": "2025-03-31T05:02:18.9246991+00:00",
  "IsReady": true,
  "ReportTypeName": "sample string 5",
  "RequestedBy": "sample string 6",
  "DownloadLinkUri": "http://webapihelppage7.com",
  "DownloadToken": "f358e112-ac8c-40e7-9bff-b9ef6f457077",
  "Parameters": {
    "sample string 1": {},
    "sample string 3": {}
  }
}

application/xml, text/xml

Sample:
<ReportStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.API.Model">
  <Completed xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-03-31T05:02:18.9246991Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </Completed>
  <DownloadLinkUri>http://webapihelppage7.com/</DownloadLinkUri>
  <DownloadToken>f358e112-ac8c-40e7-9bff-b9ef6f457077</DownloadToken>
  <Identity>a4ce97ee-7f48-464b-b9f4-3d1a9990910c</Identity>
  <IsReady>true</IsReady>
  <Parameters xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
  </Parameters>
  <ReportTypeName>sample string 5</ReportTypeName>
  <RequestedBy>sample string 6</RequestedBy>
  <Started xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-03-31T05:02:18.9246991Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </Started>
</ReportStatus>