/
Space Rack by Date [GET]

Space Rack by Date [GET]


Operation

Information of the operation

GET
https://{environment}.ulysescloud.com/public/api/{version}/con/chain/{chainId}/property/{propertyId}/space/rackByDate


Request

PropertyTypeRequiredType parameterDefault valueDescription
chainIdIntegertruepath parameter
Unique identificator of the chain.
propertyIdIntegertruepath parameter
Unique identificator of the property.
dateLocalDatetruerequest Parameter
Date of the Rack
propertyZoneIdIntegerfalserequest parameter0Filter by zone.

Example request

GET https://publicapi-providers.ulysescloud.com:9797/public/api/v1/con/chain/1/property/2/space/rackByDate?date=2023-11-23


Response

PropertyTypeRequiredDescription
listListtrueDescription of the response of the success operation

Entity SpaceRack


FieldTypeRequiredDescription
idIntegertrueUnique identifier for the spaceId.
roomIdListList<Integer>true
list of roomId that make up the space.
codeStringtrueCode ot the space.
nameStringtrueName of the space.
floorCodeStringfalseCode of the floor.
floorNameStringfalseName of the floor.
situationStringfalse

" "→ Vacant

"O"→ Occupied

"B" → Blocked

spaceStatusTypeSpaceStatusTypetrueStatus type:
  • Dirty
  • Clean
  • Check
preAssignedBooleantrueSpace have reservationRoomStay asigned.
reservationRoomStayReservationSpaceRackfalse
Reservation inhouse
reservationRoomStayPreAssignedReservationSpaceRackfalse
Reservation checkIn
spaceLockSpaceLockfalseif situation is Blocked, information about this.


Example response

[ 
{
  "id" : 1,
  "code" : "1101",
  "name" : "1101",
  "floorCode" : "A1",
  "floorName" : "Planta A1",
  "situation" : "O",
  "spaceStatusType" : {
    "id" : 2,
    "code" : "DI",
    "name" : "Dirty",
    "colorCode" : "#f44336",
    "nameI18n" : "Dirty"
  },
  "preAssigned" : false,
  "reservationRoomStay" : {
    "pmsLocator" : "LG00040743/54929",
    "arrival" : "2023-11-23",
    "departure" : "2023-11-24",
    "adult" : 3,
    "junior" : 0,
    "child" : 0,
    "infant" : 0,
    "guest" : "PALENCIAS HERNANDEZ, SATURNINO",
    "remark" : "",
    "extraBed" : 0,
    "extraCot" : 0
  }
},
{
  "id" : 125,
  "code" : "3109",
  "name" : "3109",
  "floorCode" : "C1",
  "floorName" : "Planta C1",
  "situation" : "B",
  "spaceStatusType" : {
    "id" : 1,
    "code" : "CL",
    "name" : "Clean",
    "colorCode" : "#4caf50",
    "nameI18n" : "Clean"
  },
  "preAssigned" : false,
  "spaceLock" : {
    "createDate" : "2021-11-16T17:16:56.5127858",
    "userId" : 13,
    "id" : 5,
    "startDate" : "2023-11-23",
    "endDate" : "2023-11-24",
    "remark" : "SPA",
    "spaceLockType" : {
      "id" : 1,
      "code" : "OO",
      "name" : "Fuera de Orden",
      "description" : null,
      "nameI18n" : "Fuera de Orden"
    },
    "spaceLockStatusType" : {
      "id" : 1,
      "code" : "LOC",
      "name" : "Locked",
      "colorCode" : "#ff9800",
      "nameI18n" : "Locked"
    }
  }
}
]

Related content