Back to Collection Items
var
http: HCkHttp;
success: Boolean;
queryParams: 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();
queryParams := CkJsonObject_Create();
CkJsonObject_UpdateString(queryParams,'text','smith');
CkHttp_SetRequestHeader(http,'Content-Type','application/json');
CkHttp_SetRequestHeader(http,'x-hotelid','{{HotelId}}');
// Adds the "Authorization: Bearer <access_token>" header.
CkHttp_putAuthToken(http,'<access_token>');
CkHttp_SetRequestHeader(http,'x-app-key','{{AppKey}}');
resp := CkHttp_QuickRequestParams(http,'GET','https://domain.com/rsv/v1/hotels/{{HotelId}}/reservations',queryParams);
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(queryParams);
Curl Command
curl -G -d "text=smith"
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-H "x-hotelid: {{HotelId}}"
-H "x-app-key: {{AppKey}}"
https://domain.com/rsv/v1/hotels/{{HotelId}}/reservations
Postman Collection Item JSON
{
"name": "Search for a Reservation",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
},
{
"key": "x-hotelid",
"value": "{{HotelId}}",
"type": "text"
},
{
"key": "x-app-key",
"value": "{{AppKey}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/rsv/v1/hotels/{{HotelId}}/reservations?text=smith",
"host": [
"{{HostName}}"
],
"path": [
"rsv",
"v1",
"hotels",
"{{HotelId}}",
"reservations"
],
"query": [
{
"key": "surname",
"value": "",
"disabled": true
},
{
"key": "givenName",
"value": "BILLY",
"disabled": true
},
{
"key": "arrivalEndDate",
"value": "2021-11-20",
"disabled": true
},
{
"key": "arrivalStartDate",
"value": "",
"disabled": true
},
{
"key": "departureEndDate",
"value": "2021-08-19",
"disabled": true
},
{
"key": "departureStartDate",
"value": "2021-08-10",
"disabled": true
},
{
"key": "expectedArrivalEndTime",
"value": "2021-08-16T21:00:00",
"disabled": true
},
{
"key": "expectedArrivalStartTime",
"value": "21:00",
"disabled": true
},
{
"key": "expectedReturnEndTime",
"value": "23:00",
"disabled": true
},
{
"key": "expectedReturnStartTime",
"value": "",
"disabled": true
},
{
"key": "companyNames",
"value": "",
"disabled": true
},
{
"key": "travelAgentIds",
"value": "",
"disabled": true
},
{
"key": "profileIds",
"value": "6412790000",
"disabled": true
},
{
"key": "membershipCardNumber",
"value": "123456",
"disabled": true
},
{
"key": "membershipLevels",
"value": "GOLD",
"disabled": true
},
{
"key": "membershipTypes",
"value": "OZ",
"disabled": true
},
{
"key": "anyVIPStatus",
"value": "",
"disabled": true
},
{
"key": "vipCodes",
"value": "CEL",
"disabled": true
},
{
"key": "guaranteeCode",
"value": "4PMHOLD",
"disabled": true
},
{
"key": "paymentMethod",
"value": "CA",
"disabled": true
},
{
"key": "createdBy",
"value": "44654",
"disabled": true
},
{
"key": "cancelledOn",
"value": "",
"disabled": true
},
{
"key": "ratePlanCodes",
"value": "",
"disabled": true
},
{
"key": "sourceCodes",
"value": "COLD",
"disabled": true
},
{
"key": "marketCodes",
"value": "DIR",
"disabled": true
},
{
"key": "excludeBlockReservations",
"value": "false",
"disabled": true
},
{
"key": "blockName",
"value": "ORACLE",
"disabled": true
},
{
"key": "blockIds",
"value": "",
"disabled": true
},
{
"key": "blockCodes",
"value": "",
"disabled": true
},
{
"key": "customReference",
"value": "",
"disabled": true
},
{
"key": "recordLocator",
"value": "CA3QMBCISO",
"disabled": true
},
{
"key": "roomAssignedOnly",
"value": " true",
"disabled": true
},
{
"key": "roomUnassignedOnly",
"value": " false",
"disabled": true
},
{
"key": "housekeepingRoomStatuses",
"value": "Inspected",
"disabled": true
},
{
"key": "roomClasses",
"value": "",
"disabled": true
},
{
"key": "communication",
"value": "",
"disabled": true
},
{
"key": "fetchInstructions",
"value": "",
"disabled": true
},
{
"key": "allowPreRegistration",
"value": "",
"disabled": true
},
{
"key": "actualDepartures",
"value": "",
"disabled": true
},
{
"key": "complimentaryReservations",
"value": "",
"disabled": true
},
{
"key": "dayUse",
"value": "",
"disabled": true
},
{
"key": "earlyDepartures",
"value": "",
"disabled": true
},
{
"key": "expectedArrivals",
"value": "",
"disabled": true
},
{
"key": "expectedDepartures",
"value": "",
"disabled": true
},
{
"key": "stayDate",
"value": "",
"disabled": true
},
{
"key": "roomRoutingId",
"value": "",
"disabled": true
},
{
"key": "excludePseudoRoomReservations",
"value": "",
"disabled": true
},
{
"key": "excludeReservationIds",
"value": "123701",
"disabled": true
},
{
"key": "excludeVIPStatusCodes",
"value": "CEL",
"disabled": true
},
{
"key": "excludeSpecials",
"value": "",
"disabled": true
},
{
"key": "excludeFloorPreferences",
"value": "",
"disabled": true
},
{
"key": "excludeAdvanceCheckedIn",
"value": "",
"disabled": true
},
{
"key": "reservationStatuses",
"value": "NoShow",
"disabled": true
},
{
"key": "transportationCodes",
"value": "",
"disabled": true
},
{
"key": "roomReadyStatuses",
"value": "Failed",
"disabled": true
},
{
"key": "text",
"value": "smith"
}
]
}
},
"response": [
]
}