Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vJson
Handle hoJson
Variant vResp
Handle hoResp
String sTemp1
Integer iTemp1
Boolean bTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "reservationIdList": [
// {
// "type": "Reservation",
// "id": "{{ReservationId}}"
// }
// ],
// "guestMessages": [
// {
// "message": {
// "messageText": "Kate Oracle phoned, please call her back.",
// "messageDate": "2021-12-26 03:27:53.0",
// "typeOfMessage": "Tm",
// "recipient": "Smith, Kate"
// },
// "delivery": {
// "deliveryStatus": "Mr"
// }
// }
// ],
// "hotelId": "{{HotelId}}"
// }
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Get ComUpdateString Of hoJson "reservationIdList[0].type" "Reservation" To iSuccess
Get ComUpdateString Of hoJson "reservationIdList[0].id" "{{ReservationId}}" To iSuccess
Get ComUpdateString Of hoJson "guestMessages[0].message.messageText" "Kate Oracle phoned, please call her back." To iSuccess
Get ComUpdateString Of hoJson "guestMessages[0].message.messageDate" "2021-12-26 03:27:53.0" To iSuccess
Get ComUpdateString Of hoJson "guestMessages[0].message.typeOfMessage" "Tm" To iSuccess
Get ComUpdateString Of hoJson "guestMessages[0].message.recipient" "Smith, Kate" To iSuccess
Get ComUpdateString Of hoJson "guestMessages[0].delivery.deliveryStatus" "Mr" To iSuccess
Get ComUpdateString Of hoJson "hotelId" "{{HotelId}}" To iSuccess
Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"
Send ComSetRequestHeader To hoHttp "x-app-key" "{{AppKey}}"
// Adds the "Authorization: Bearer <access_token>" header.
Set ComAuthToken Of hoHttp To "<access_token>"
Send ComSetRequestHeader To hoHttp "x-hotelId" "{{HotelId}}"
Get pvComObject of hoJson to vJson
Get ComPostJson3 Of hoHttp "https://domain.com/rsv/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/guestMessages" "application/json" vJson To vResp
If (IsComObject(vResp)) Begin
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
End
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStatusCode Of hoResp To iTemp1
Showln iTemp1
Get ComBodyStr Of hoResp To sTemp1
Showln sTemp1
Send Destroy of hoResp
End_Procedure
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-H "x-app-key: {{AppKey}}"
-H "x-hotelId: {{HotelId}}"
-d '{
"reservationIdList": [
{
"type": "Reservation",
"id": "{{ReservationId}}"
}
],
"guestMessages": [
{
"message": {
"messageText": "Kate Oracle phoned, please call her back.",
"messageDate": "2021-12-26 03:27:53.0",
"typeOfMessage": "Tm",
"recipient": "Smith, Kate"
},
"delivery": {
"deliveryStatus": "Mr"
}
}
],
"hotelId": "{{HotelId}}"
}'
https://domain.com/rsv/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/guestMessages
Postman Collection Item JSON
{
"name": "Create a new Guest Messages",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "x-app-key",
"type": "text",
"value": "{{AppKey}}"
},
{
"key": "x-hotelId",
"type": "text",
"value": "{{HotelId}}"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"reservationIdList\": [\r\n {\r\n \"type\": \"Reservation\",\r\n \"id\": \"{{ReservationId}}\"\r\n }\r\n ],\r\n \"guestMessages\": [\r\n {\r\n \"message\": {\r\n \"messageText\": \"Kate Oracle phoned, please call her back.\",\r\n \"messageDate\": \"2021-12-26 03:27:53.0\",\r\n \"typeOfMessage\": \"Tm\",\r\n \"recipient\": \"Smith, Kate\"\r\n },\r\n \"delivery\": {\r\n \"deliveryStatus\": \"Mr\"\r\n }\r\n }\r\n ],\r\n \"hotelId\": \"{{HotelId}}\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/rsv/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/guestMessages",
"host": [
"{{HostName}}"
],
"path": [
"rsv",
"v0",
"hotels",
"{{HotelId}}",
"reservations",
"{{ReservationId}}",
"guestMessages"
]
}
},
"response": [
]
}