Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkStringBuilder.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkStringBuilder sbResponseBody;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
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>");
sbResponseBody = CkStringBuilder_Create();
success = CkHttp_QuickGetSb(http,"https://domain.com/blk/config/v0/blockStatusCodes/TEN/nextStatusCodes",sbResponseBody);
if (success == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
return;
}
printf("Response status code = %d\n",CkHttp_getLastStatus(http));
printf("%s\n",CkStringBuilder_getAsString(sbResponseBody));
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
}
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
-H "x-app-key: {{AppKey}}"
-H "x-hotelid: {{HotelId}}"
https://domain.com/blk/config/v0/blockStatusCodes/TEN/nextStatusCodes
Postman Collection Item JSON
{
"name": "Get Block Next Status Codes",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "x-app-key",
"type": "text",
"value": "{{AppKey}}"
},
{
"key": "x-hotelid",
"type": "text",
"value": "{{HotelId}}"
}
],
"url": {
"raw": "{{HostName}}/blk/config/v0/blockStatusCodes/TEN/nextStatusCodes",
"host": [
"{{HostName}}"
],
"path": [
"blk",
"config",
"v0",
"blockStatusCodes",
"TEN",
"nextStatusCodes"
]
}
},
"response": [
]
}