Chilkat Online Tools

Swift / ORACLE Hospitality OPERA Cloud REST API Workflows / 07. Pre-Arrival - postRoomAssignment

Back to Collection Items

func chilkatTest() {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    let http = CkoHttp()
    var success: Bool

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "criteria": {
    //     "hotelId": "{{HotelId}}",
    //     "reservationIdList": [
    //       {
    //         "id": "{{ReservationId}}",
    //         "type": "Reservation"
    //       }
    //     ],
    //     "roomId": "{{RoomId}}",
    //     "overrideInstructions": {
    //       "dirtyRoom": true
    //     },
    //     "updateRoomTypeCharged": true,
    //     "includeDepartureRooms": true,
    //     "roomNumberLocked": true
    //   }
    // }

    let json = CkoJsonObject()
    json.UpdateString("criteria.hotelId", value: "{{HotelId}}")
    json.UpdateString("criteria.reservationIdList[0].id", value: "{{ReservationId}}")
    json.UpdateString("criteria.reservationIdList[0].type", value: "Reservation")
    json.UpdateString("criteria.roomId", value: "{{RoomId}}")
    json.UpdateBool("criteria.overrideInstructions.dirtyRoom", value: true)
    json.UpdateBool("criteria.updateRoomTypeCharged", value: true)
    json.UpdateBool("criteria.includeDepartureRooms", value: true)
    json.UpdateBool("criteria.roomNumberLocked", value: true)

    http.SetRequestHeader("Content-Type", value: "application/json")
    http.SetRequestHeader("x-app-key", value: "{{AppKey}}")
    http.SetRequestHeader("x-hotelid", value: "{{HotelId}}")
    // Adds the "Authorization: Bearer <access_token>" header.
    http.AuthToken = "<access_token>"

    var resp: CkoHttpResponse? = http.PostJson3("https://domain.com/fof/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/roomAssignments", contentType: "application/json", json: json)
    if http.LastMethodSuccess == false {
        print("\(http.LastErrorText)")
        return
    }

    print("\(resp!.StatusCode.intValue)")
    print("\(resp!.BodyStr)")
    resp = nil

}

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-H "x-app-key: {{AppKey}}"
	-H "x-hotelid: {{HotelId}}"
	-d '{
    "criteria": {
        "hotelId": "{{HotelId}}",
        "reservationIdList": [
            {
                "id": "{{ReservationId}}",
                "type": "Reservation"
            }
        ],
        "roomId": "{{RoomId}}",
        "overrideInstructions": {
            "dirtyRoom": true
        },
        "updateRoomTypeCharged": true,
        "includeDepartureRooms": true,
        "roomNumberLocked": true
    }
}'
https://domain.com/fof/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/roomAssignments

Postman Collection Item JSON

{
  "name": "07. Pre-Arrival - postRoomAssignment",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{Token}}",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "type": "text",
        "value": "application/json"
      },
      {
        "key": "x-app-key",
        "type": "text",
        "value": "{{AppKey}}"
      },
      {
        "key": "x-hotelid",
        "type": "text",
        "value": "{{HotelId}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"criteria\": {\r\n        \"hotelId\": \"{{HotelId}}\",\r\n        \"reservationIdList\": [\r\n            {\r\n                \"id\": \"{{ReservationId}}\",\r\n                \"type\": \"Reservation\"\r\n            }\r\n        ],\r\n        \"roomId\": \"{{RoomId}}\",\r\n        \"overrideInstructions\": {\r\n            \"dirtyRoom\": true\r\n        },\r\n        \"updateRoomTypeCharged\": true,\r\n        \"includeDepartureRooms\": true,\r\n        \"roomNumberLocked\": true\r\n    }\r\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{HostName}}/fof/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/roomAssignments",
      "host": [
        "{{HostName}}"
      ],
      "path": [
        "fof",
        "v0",
        "hotels",
        "{{HotelId}}",
        "reservations",
        "{{ReservationId}}",
        "roomAssignments"
      ]
    },
    "description": "Use this API to add/assign a room number to a guests reservation. This is required before they can check into the property."
  },
  "response": [
  ]
}