POST api/Reports/BookingRequests?start={start}&end={end}&reportType={reportType}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
start | date |
Required |
|
end | date |
Required |
|
reportType | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ReportStatusName | Description | Type | Additional 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": "da335b58-a2f3-4f1f-8f92-ef76328bd3e7", "Started": "2025-06-22T00:36:59.935211+00:00", "Completed": "2025-06-22T00:36:59.935211+00:00", "IsReady": true, "ReportTypeName": "sample string 5", "RequestedBy": "sample string 6", "DownloadLinkUri": "http://webapihelppage7.com", "DownloadToken": "f364a63c-6e3a-472f-b987-c19c5ee6b06c", "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-06-22T00:36:59.935211Z</d2p1:DateTime> <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes> </Completed> <DownloadLinkUri>http://webapihelppage7.com/</DownloadLinkUri> <DownloadToken>f364a63c-6e3a-472f-b987-c19c5ee6b06c</DownloadToken> <Identity>da335b58-a2f3-4f1f-8f92-ef76328bd3e7</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-06-22T00:36:59.935211Z</d2p1:DateTime> <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes> </Started> </ReportStatus>