Versions Compared

Key

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

...

  • AvailableForColleagueDates - An array of objects which include start and end dates.

    • Id - A unique ID value for each availability booking.

    • StartDate - The start date for an availability booking.

    • EndDate - The end date for an availability booking.

Example

Code Block
languagejson
{
  "UserId": int,
  "EmailAddress": "string (email address)",
  "AssignedSpace": {
    "ResId": int,
    "ResName": "string",
    "SpaceType": "string",
    "IconPath": "string"
    "MapId": Array[int,int]
  }
  "AvailableForColleagueDates": Array[
    Object{
      "Id": int,
      "StartDate": "dd/MM/yyyy",
      "EndDate": "dd/MM/yyyy",
    }
  ]
}