NOT FOR PUBLIC DISTRIBUTION: 2020-09-23

Validate required information for checking in a reservation

post

/spms/v1/reservations/validation/checkIns

This is to validate required information for checking in a reservation

Request

Supported Media Types
Body ()
Reservation ID
Root Schema : reservationId
Type: object
Reservation ID
Show Source
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : Oracle Response returned in singular object
Type: object
Title: Oracle Response returned in singular object
The object returned in Oracle Standard when function is executed successfully
Show Source
Nested Schema : item
Type: array
Empty body with 200 HTTP response status code
Example Response (application/json)
{
}

400 Response

Invalid parameter(s) passed in
Body ()
Root Schema : Oracle Response returned in singular object
Type: object
Title: Oracle Response returned in singular object
The object returned in Oracle Standard when function is executed successfully
Show Source
Nested Schema : item
Type: array
A list of objects that contains error messages and fields grouped by category.
Example Response (application/json)
{
    "detail":[
        {
            "step":"PROFILE",
            "error":[
                {
                    "errorPath":"firstName",
                    "message":"First Name is missing!"
                },
                {
                    "errorPath":"lastName",
                    "message":"Last Name is missing!"
                }
            ]
        },
        {
            "step":"GUARDIAN",
            "error":{
                "errorPath":"guardian",
                "message":"Guest is minor, please assign a guardian!"
            }
        }
    ]
}

403 Response

This API is not allowed for the current user
Body ()
Root Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source

405 Response

Method requested not available
Body ()
Root Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source

409 Response

Check-In failed. Reservation is already checked in
Body ()
Root Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source

500 Response

Error occurred while processing this request
Body ()
Root Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source
Back to Top