GET api/BookingTypes/{bookingTypeIdentity}/Resources/{resourceIdentity}/BusyTimes?startDate={startDate}&endDate={endDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| bookingTypeIdentity | string |
Required |
|
| resourceIdentity | string |
Required |
|
| startDate | date |
Required |
|
| endDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
FreeBlocks| Name | Description | Type | Additional information |
|---|---|---|---|
| Identity | globally unique identifier |
None. |
|
| EventIdentity | globally unique identifier |
None. |
|
| StartDateTime | date |
None. |
|
| Duration | decimal number |
None. |
|
| AvailabilityType | integer |
None. |
|
| Name | string |
None. |
|
| Repeats | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Identity": "f4aa6e42-1f16-4efc-a4fa-8b5b411bcce3",
"EventIdentity": "fdf3389a-7710-4d85-88a2-e9162914c545",
"StartDateTime": "2026-08-31T03:33:52.2165884+00:00",
"Duration": 4.1,
"AvailabilityType": 5,
"Name": "sample string 6",
"Repeats": true
}
application/xml, text/xml
Sample:
<FreeBlocks xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.API.Model">
<AvailabilityType>5</AvailabilityType>
<Duration>4.1</Duration>
<EventIdentity>fdf3389a-7710-4d85-88a2-e9162914c545</EventIdentity>
<Identity>f4aa6e42-1f16-4efc-a4fa-8b5b411bcce3</Identity>
<Name>sample string 6</Name>
<Repeats>true</Repeats>
<StartDateTime xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-08-31T03:33:52.2165884Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</StartDateTime>
</FreeBlocks>