Chilkat Online Tools

PureBasic / ORACLE Hospitality OPERA Cloud REST API Workflows / Create Rate Plan Schedules

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

    ; This example assumes the Chilkat API to have been previously unlocked.
    ; See Global Unlock Sample for sample code.

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

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

    ; The following JSON is sent in the request body.

    ; {
    ;   "ratePlanScheduleList": [
    ;     {
    ;       "roomTypeList": [
    ;         "DLXK",
    ;         "DLXQ"
    ;       ],
    ;       "sunday": true,
    ;       "monday": true,
    ;       "tuesday": true,
    ;       "wednesday": true,
    ;       "thursday": true,
    ;       "friday": true,
    ;       "saturday": true,
    ;       "rateAmounts": {
    ;         "onePersonRate": "200",
    ;         "twoPersonRate": "200",
    ;         "threePersonRate": "235",
    ;         "fourPersonRate": "270",
    ;         "oneChildRate": "150",
    ;         "twoChildrenRate": "175",
    ;         "threeChildrenRate": "200",
    ;         "rateByAgeBuckets": [
    ;           {
    ;             "minimumAge": "1",
    ;             "maximumAge": "17"
    ;           }
    ;         ],
    ;         "minimumChildrenForFreeStay": "1",
    ;         "overrideFloorAmount": true
    ;       },
    ;       "classifications": {},
    ;       "rateSchedulePackages": {
    ;         "packages": [
    ;         ],
    ;         "packageGroups": [
    ;         ]
    ;       },
    ;       "tierID": "1",
    ;       "start": "2020-11-01",
    ;       "end": "2020-11-30"
    ;     }
    ;   ],
    ;   "hotelId": "{{HotelId}}",
    ;   "ratePlanCode": "{{RatePlanCode}}"
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].roomTypeList[0]","DLXK")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].roomTypeList[1]","DLXQ")
    CkJsonObject::ckUpdateBool(json,"ratePlanScheduleList[0].sunday",1)
    CkJsonObject::ckUpdateBool(json,"ratePlanScheduleList[0].monday",1)
    CkJsonObject::ckUpdateBool(json,"ratePlanScheduleList[0].tuesday",1)
    CkJsonObject::ckUpdateBool(json,"ratePlanScheduleList[0].wednesday",1)
    CkJsonObject::ckUpdateBool(json,"ratePlanScheduleList[0].thursday",1)
    CkJsonObject::ckUpdateBool(json,"ratePlanScheduleList[0].friday",1)
    CkJsonObject::ckUpdateBool(json,"ratePlanScheduleList[0].saturday",1)
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].rateAmounts.onePersonRate","200")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].rateAmounts.twoPersonRate","200")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].rateAmounts.threePersonRate","235")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].rateAmounts.fourPersonRate","270")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].rateAmounts.oneChildRate","150")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].rateAmounts.twoChildrenRate","175")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].rateAmounts.threeChildrenRate","200")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].rateAmounts.rateByAgeBuckets[0].minimumAge","1")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].rateAmounts.rateByAgeBuckets[0].maximumAge","17")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].rateAmounts.minimumChildrenForFreeStay","1")
    CkJsonObject::ckUpdateBool(json,"ratePlanScheduleList[0].rateAmounts.overrideFloorAmount",1)
    CkJsonObject::ckUpdateNewObject(json,"ratePlanScheduleList[0].classifications")
    CkJsonObject::ckUpdateNewArray(json,"ratePlanScheduleList[0].rateSchedulePackages.packages")
    CkJsonObject::ckUpdateNewArray(json,"ratePlanScheduleList[0].rateSchedulePackages.packageGroups")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].tierID","1")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].start","2020-11-01")
    CkJsonObject::ckUpdateString(json,"ratePlanScheduleList[0].end","2020-11-30")
    CkJsonObject::ckUpdateString(json,"hotelId","{{HotelId}}")
    CkJsonObject::ckUpdateString(json,"ratePlanCode","{{RatePlanCode}}")

    CkHttp::ckSetRequestHeader(http,"Content-Type","application/json;charset=UTF-8")
    CkHttp::ckSetRequestHeader(http,"x-hotelid","{{HotelId}}")
    ; Adds the "Authorization: Bearer <access_token>" header.
    CkHttp::setCkAuthToken(http, "<access_token>")
    CkHttp::ckSetRequestHeader(http,"Accept","application/json;charset=UTF-8")
    CkHttp::ckSetRequestHeader(http,"x-app-key","{{AppKey}}")

    resp.i = CkHttp::ckPostJson3(http,"https://domain.com/rtp/v0/hotels/{{HotelId}}/ratePlans/{{RatePlanCode}}/schedules","application/json;charset=UTF-8",json)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)


    ProcedureReturn
EndProcedure

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json;charset=UTF-8"
	-H "Accept: application/json;charset=UTF-8"
	-H "x-hotelid: {{HotelId}}"
	-H "x-app-key: {{AppKey}}"
	-d '{
    "ratePlanScheduleList": [
        {
            "roomTypeList": [
                "DLXK",
                "DLXQ"
            ],
            "sunday": true,
            "monday": true,
            "tuesday": true,
            "wednesday": true,
            "thursday": true,
            "friday": true,
            "saturday": true,
            "rateAmounts": {
                "onePersonRate": "200",
                "twoPersonRate": "200",
                "threePersonRate": "235",
                "fourPersonRate": "270",
                "oneChildRate": "150",
                "twoChildrenRate": "175",
                "threeChildrenRate": "200",
                "rateByAgeBuckets": [
                    {
                        "minimumAge": "1",
                        "maximumAge": "17"
                    }
                ],
                "minimumChildrenForFreeStay": "1",
                "overrideFloorAmount": true
            },
            "classifications": {},
            "rateSchedulePackages": {
                "packages": [],
                "packageGroups": []
            },
            "tierID": "1",
            "start": "2020-11-01",
            "end": "2020-11-30"
        }
    ],
    "hotelId": "{{HotelId}}",
    "ratePlanCode": "{{RatePlanCode}}"
}'
https://domain.com/rtp/v0/hotels/{{HotelId}}/ratePlans/{{RatePlanCode}}/schedules

Postman Collection Item JSON

{
  "name": "Create Rate Plan Schedules",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{Token}}",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json;charset=UTF-8"
      },
      {
        "key": "Accept",
        "type": "text",
        "value": "application/json;charset=UTF-8"
      },
      {
        "key": "x-hotelid",
        "type": "text",
        "value": "{{HotelId}}"
      },
      {
        "key": "x-app-key",
        "type": "text",
        "value": "{{AppKey}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"ratePlanScheduleList\": [\r\n        {\r\n            \"roomTypeList\": [\r\n                \"DLXK\",\r\n                \"DLXQ\"\r\n            ],\r\n            \"sunday\": true,\r\n            \"monday\": true,\r\n            \"tuesday\": true,\r\n            \"wednesday\": true,\r\n            \"thursday\": true,\r\n            \"friday\": true,\r\n            \"saturday\": true,\r\n            \"rateAmounts\": {\r\n                \"onePersonRate\": \"200\",\r\n                \"twoPersonRate\": \"200\",\r\n                \"threePersonRate\": \"235\",\r\n                \"fourPersonRate\": \"270\",\r\n                \"oneChildRate\": \"150\",\r\n                \"twoChildrenRate\": \"175\",\r\n                \"threeChildrenRate\": \"200\",\r\n                \"rateByAgeBuckets\": [\r\n                    {\r\n                        \"minimumAge\": \"1\",\r\n                        \"maximumAge\": \"17\"\r\n                    }\r\n                ],\r\n                \"minimumChildrenForFreeStay\": \"1\",\r\n                \"overrideFloorAmount\": true\r\n            },\r\n            \"classifications\": {},\r\n            \"rateSchedulePackages\": {\r\n                \"packages\": [],\r\n                \"packageGroups\": []\r\n            },\r\n            \"tierID\": \"1\",\r\n            \"start\": \"2020-11-01\",\r\n            \"end\": \"2020-11-30\"\r\n        }\r\n    ],\r\n    \"hotelId\": \"{{HotelId}}\",\r\n    \"ratePlanCode\": \"{{RatePlanCode}}\"\r\n}"
    },
    "url": {
      "raw": "{{HostName}}/rtp/v0/hotels/{{HotelId}}/ratePlans/{{RatePlanCode}}/schedules",
      "host": [
        "{{HostName}}"
      ],
      "path": [
        "rtp",
        "v0",
        "hotels",
        "{{HotelId}}",
        "ratePlans",
        "{{RatePlanCode}}",
        "schedules"
      ]
    }
  },
  "response": [
  ]
}