Back to Collection Items
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
// 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"
// }
// }
CkJsonObject json = new CkJsonObject();
json.UpdateString("criteria.roomIds[0]","101");
json.UpdateString("criteria.hotelId","{{HotelId}}");
json.UpdateString("criteria.maintenanceCode","AIRCON");
json.UpdateString("criteria.remarks","AC Repair");
http.SetRequestHeader("x-app-key","{{AppKey}}");
http.SetRequestHeader("x-hotelid","{{HotelId}}");
// Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>");
CkHttpResponse resp = http.PostJson3("https://domain.com/hsk/v0/hotels/{{HotelId}}/rooms/maintenanceCodes/{{MaintenanceCode}}","application/json",json);
if (http.get_LastMethodSuccess() == false) {
Log.i(TAG, http.lastErrorText());
return;
}
Log.i(TAG, String.valueOf(resp.get_StatusCode()));
Log.i(TAG, resp.bodyStr());
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}
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": [
]
}