Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

{{url}}/api/Search/Resources

Request

The request will include all filter options valid for resources; such as location, space type, equipment etc.
The option to specify available resources only is needed, this will then require the start and end time option.

Example

Code Block
languagejson
{
  "SearchText": "",
  "Location": {
    "Country": "",
    "City": "",
    "Site": "",
    "Building": "",
    "Floor": "",
    "Zone": ""
  },
  "SpaceTypes": ["Room", "Conference Room"],
  "Equipment": ["Phone", "TV"],
  "Tags": [],
  "MinOccupancy": 4,
  "Available": true, // available based on StartTime and EndTime
  "StartTime": "dd/MM/yyyy HH:mm",
  "EndTime": "dd/MM/yyyy HH:mm"
}

...