GET api/BookingTypes/{bookingTypeIdentity}/ResourceGroups/{resourceIdentity}/BusyTimes?resourceGroupIdentity={resourceGroupIdentity}&startDate={startDate}&endDate={endDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
bookingTypeIdentity

string

Required

resourceGroupIdentity

string

Required

startDate

date

Required

endDate

date

Required

resourceIdentity

string

None.

Body Parameters

None.

Response Information

Resource Description

FreeBlocks
NameDescriptionTypeAdditional 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": "57cb8ffe-4b14-4c8a-8acc-55004ee25a2e",
  "EventIdentity": "07073bbf-640d-466b-aef1-2379d8e9c7f7",
  "StartDateTime": "2025-03-31T05:10:58.3802598+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>07073bbf-640d-466b-aef1-2379d8e9c7f7</EventIdentity>
  <Identity>57cb8ffe-4b14-4c8a-8acc-55004ee25a2e</Identity>
  <Name>sample string 6</Name>
  <Repeats>true</Repeats>
  <StartDateTime xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-03-31T05:10:58.3802598Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </StartDateTime>
</FreeBlocks>