Versions Compared

Key

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

...

The response will include the user's bookingsa list of all resources that match the requested search criteria.

Full booking data for each resource is not required.

Example

Code Block
languagejson
{
  "SearchResults": [
    {
      "ResId": 1,
      "Name": "Meeting Room",
      "Status": 1,
      "Location": {
        "Country": "",
        "City": "",
        "Site": "",
        "Building": "",
        "Floor": "",
        "Zone": ""
      },
      "SpaceType": "Room",
      "IconPath": "",
      "Occupancy": 4,
      "MapId": 1234,
    },
    {
      "ResId": 2,
      "Name": "Conference Room",
      "Status": 1,
      "Location": {
        "Country": "",
        "City": "",
        "Site": "",
        "Building": "",
        "Floor": "",
        "Zone": ""
      },
      "SpaceType": "Conference Room",
      "IconPath": "/ResourceFiles/images/conference-room-icon.svg",
      "Occupancy": 8,
      "MapId": 1234,
    }
  ]
}

...