Back to Collection Items
var
http: HCkHttp;
success: Boolean;
json: HCkJsonObject;
resp: HCkHttpResponse;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := CkHttp_Create();
// 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": {
// "roomIds": [
// "101"
// ],
// "hotelId": "{{HotelId}}",
// "maintenanceCode": "AIRCON",
// "remarks": "AC Repair"
// }
// }
json := CkJsonObject_Create();
CkJsonObject_UpdateString(json,'criteria.roomIds[0]','101');
CkJsonObject_UpdateString(json,'criteria.hotelId','{{HotelId}}');
CkJsonObject_UpdateString(json,'criteria.maintenanceCode','AIRCON');
CkJsonObject_UpdateString(json,'criteria.remarks','AC Repair');
CkHttp_SetRequestHeader(http,'x-app-key','{{AppKey}}');
CkHttp_SetRequestHeader(http,'x-hotelid','{{HotelId}}');
// Adds the "Authorization: Bearer <access_token>" header.
CkHttp_putAuthToken(http,'<access_token>');
resp := CkHttp_PostJson3(http,'https://domain.com/hsk/v0/hotels/{{HotelId}}/rooms/maintenanceCodes/{{MaintenanceCode}}','application/json',json);
if (CkHttp_getLastMethodSuccess(http) = False) then
begin
Memo1.Lines.Add(CkHttp__lastErrorText(http));
Exit;
end;
Memo1.Lines.Add(IntToStr(CkHttpResponse_getStatusCode(resp)));
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "x-hotelid: {{HotelId}}"
-H "x-app-key: {{AppKey}}"
-d '{
"criteria": {
"roomIds": [
"101"
],
"hotelId": "{{HotelId}}",
"maintenanceCode": "AIRCON",
"remarks": "AC Repair"
}
}'
https://domain.com/hsk/v0/hotels/{{HotelId}}/rooms/maintenanceCodes/{{MaintenanceCode}}
Postman Collection Item JSON
{
"name": "Create a new Room Maintenance request",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "x-hotelid",
"value": "{{HotelId}}"
},
{
"key": "x-app-key",
"value": "{{AppKey}}"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"criteria\": {\r\n \"roomIds\": [\r\n \"101\"\r\n ],\r\n \"hotelId\": \"{{HotelId}}\",\r\n \"maintenanceCode\": \"AIRCON\",\r\n \"remarks\": \"AC Repair\"\r\n }\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/hsk/v0/hotels/{{HotelId}}/rooms/maintenanceCodes/{{MaintenanceCode}}",
"host": [
"{{HostName}}"
],
"path": [
"hsk",
"v0",
"hotels",
"{{HotelId}}",
"rooms",
"maintenanceCodes",
"{{MaintenanceCode}}"
]
},
"description": "Use this API to create a maintenances for a specific room - such as Air Conditioning needs fixing. You can find the available Room maintenance codes from the operation in ListOfValues module - LOV getMaintenanceCodes."
},
"response": [
]
}