Chilkat Online Tools

TCL / Booking Management API v2021.12 / 3. createBooking

Back to Collection Items

load ./chilkat.dll

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set http [new_CkHttp]

# Use this online tool to generate code from sample JSON: Generate Code to Create JSON

# The following JSON is sent in the request body.

# {
#   "agency": {
#     "address": {
#       "name": "John Smith",
#       "street": "1230 Ellen Ave, apt 10",
#       "city": "Dallas",
#       "stateProvince": "TX",
#       "postalCode": "75063",
#       "countryCode": "US",
#       "freeText": "John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS"
#     },
#     "agencyCustomerNumber": "1234567",
#     "ticketingPolicy": "TODAY"
#   },
#   "travelers": [
#     {
#       "givenName": "John",
#       "surname": "Kowalski",
#       "passengerCode": "ADT"
#     },
#     {
#       "givenName": "Mary",
#       "surname": "Kowalski",
#       "passengerCode": "ADT"
#     },
#     {
#       "givenName": "Ann",
#       "surname": "Kowalski",
#       "passengerCode": "INS",
#       "age": 3
#     }
#   ],
#   "contactInfo": {
#     "emails": [
#       "travel@sabre.com",
#       "travel2@sabre.com"
#     ],
#     "phones": [
#       "+123456"
#     ]
#   },
#   "hotel": {
#     "useCsl": true,
#     "bookingKey": "{{bookingKey}}",
#     "corporateDiscountCode": 6878700,
#     "rooms": [
#       {
#         "isSmoking": true,
#         "bedTypeCode": 3,
#         "physicalDisabilityCode": 3,
#         "travelerIndices": [
#           1,
#           2,
#           3
#         ]
#       }
#     ],
#     "specialInstruction": "Need a wi-fi in the room.",
#     "paymentPolicy": "DEPOSIT",
#     "formOfPayment": 1
#   },
#   "payment": {
#     "formsOfPayment": [
#       {
#         "type": "PAYMENTCARD",
#         "cardTypeCode": "VI",
#         "cardNumber": "4487971000000006",
#         "cardSecurityCode": "123",
#         "expiryDate": "2022-10",
#         "cardHolder": {
#           "givenName": "John",
#           "surname": "Smith",
#           "email": "john@smith.family.priv",
#           "phone": "+1-555-123-4567",
#           "address": {
#             "street": "1230 Ellen Ave, apt 10",
#             "city": "Dallas",
#             "stateProvince": "TX",
#             "postalCode": "75063",
#             "countryCode": "US"
#           }
#         }
#       },
#       {
#         "type": "VIRTUAL_CARD",
#         "virtualCard": {
#           "customerAccountCode": "John",
#           "agencyEmail": "john@smith.family.priv",
#           "hotelFax": "john@smith.family.priv",
#           "hotelName": "Ilia Hotel and Luxury Suites",
#           "roomType": "2 double beds",
#           "roomDescription": "Deluxe Room, 2 Double Beds",
#           "rateAmount": {
#             "amount": "100.00",
#             "currencyCode": "USD"
#           },
#           "virtualCardCharges": [
#             "Breakfast"
#           ]
#         }
#       },
#       {
#         "type": "AGENCY_NAME",
#         "agencyAddress": {
#           "name": "John Smith",
#           "street": "1230 Ellen Ave, apt 10",
#           "city": "Dallas",
#           "stateProvince": "TX",
#           "postalCode": "75063",
#           "countryCode": "US"
#         }
#       },
#       {
#         "type": "AGENCY_IATA",
#         "agencyIataNumber": "129345738"
#       },
#       {
#         "type": "CORPORATE",
#         "corporateId": "CC006"
#       },
#       {
#         "type": "COMPANY_NAME",
#         "companyAddress": {
#           "name": "John Smith",
#           "street": "1230 Ellen Ave, apt 10",
#           "city": "Dallas",
#           "stateProvince": "TX",
#           "postalCode": "75063",
#           "countryCode": "US"
#         }
#       }
#     ]
#   }
# }

set json [new_CkJsonObject]

CkJsonObject_UpdateString $json "agency.address.name" "John Smith"
CkJsonObject_UpdateString $json "agency.address.street" "1230 Ellen Ave, apt 10"
CkJsonObject_UpdateString $json "agency.address.city" "Dallas"
CkJsonObject_UpdateString $json "agency.address.stateProvince" "TX"
CkJsonObject_UpdateString $json "agency.address.postalCode" "75063"
CkJsonObject_UpdateString $json "agency.address.countryCode" "US"
CkJsonObject_UpdateString $json "agency.address.freeText" "John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS"
CkJsonObject_UpdateString $json "agency.agencyCustomerNumber" "1234567"
CkJsonObject_UpdateString $json "agency.ticketingPolicy" "TODAY"
CkJsonObject_UpdateString $json "travelers[0].givenName" "John"
CkJsonObject_UpdateString $json "travelers[0].surname" "Kowalski"
CkJsonObject_UpdateString $json "travelers[0].passengerCode" "ADT"
CkJsonObject_UpdateString $json "travelers[1].givenName" "Mary"
CkJsonObject_UpdateString $json "travelers[1].surname" "Kowalski"
CkJsonObject_UpdateString $json "travelers[1].passengerCode" "ADT"
CkJsonObject_UpdateString $json "travelers[2].givenName" "Ann"
CkJsonObject_UpdateString $json "travelers[2].surname" "Kowalski"
CkJsonObject_UpdateString $json "travelers[2].passengerCode" "INS"
CkJsonObject_UpdateInt $json "travelers[2].age" 3
CkJsonObject_UpdateString $json "contactInfo.emails[0]" "travel@sabre.com"
CkJsonObject_UpdateString $json "contactInfo.emails[1]" "travel2@sabre.com"
CkJsonObject_UpdateString $json "contactInfo.phones[0]" "+123456"
CkJsonObject_UpdateBool $json "hotel.useCsl" 1
CkJsonObject_UpdateString $json "hotel.bookingKey" "{{bookingKey}}"
CkJsonObject_UpdateInt $json "hotel.corporateDiscountCode" 6878700
CkJsonObject_UpdateBool $json "hotel.rooms[0].isSmoking" 1
CkJsonObject_UpdateInt $json "hotel.rooms[0].bedTypeCode" 3
CkJsonObject_UpdateInt $json "hotel.rooms[0].physicalDisabilityCode" 3
CkJsonObject_UpdateInt $json "hotel.rooms[0].travelerIndices[0]" 1
CkJsonObject_UpdateInt $json "hotel.rooms[0].travelerIndices[1]" 2
CkJsonObject_UpdateInt $json "hotel.rooms[0].travelerIndices[2]" 3
CkJsonObject_UpdateString $json "hotel.specialInstruction" "Need a wi-fi in the room."
CkJsonObject_UpdateString $json "hotel.paymentPolicy" "DEPOSIT"
CkJsonObject_UpdateInt $json "hotel.formOfPayment" 1
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].type" "PAYMENTCARD"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardTypeCode" "VI"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardNumber" "4487971000000006"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardSecurityCode" "123"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].expiryDate" "2022-10"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardHolder.givenName" "John"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardHolder.surname" "Smith"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardHolder.email" "john@smith.family.priv"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardHolder.phone" "+1-555-123-4567"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardHolder.address.street" "1230 Ellen Ave, apt 10"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardHolder.address.city" "Dallas"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardHolder.address.stateProvince" "TX"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardHolder.address.postalCode" "75063"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardHolder.address.countryCode" "US"
CkJsonObject_UpdateString $json "payment.formsOfPayment[1].type" "VIRTUAL_CARD"
CkJsonObject_UpdateString $json "payment.formsOfPayment[1].virtualCard.customerAccountCode" "John"
CkJsonObject_UpdateString $json "payment.formsOfPayment[1].virtualCard.agencyEmail" "john@smith.family.priv"
CkJsonObject_UpdateString $json "payment.formsOfPayment[1].virtualCard.hotelFax" "john@smith.family.priv"
CkJsonObject_UpdateString $json "payment.formsOfPayment[1].virtualCard.hotelName" "Ilia Hotel and Luxury Suites"
CkJsonObject_UpdateString $json "payment.formsOfPayment[1].virtualCard.roomType" "2 double beds"
CkJsonObject_UpdateString $json "payment.formsOfPayment[1].virtualCard.roomDescription" "Deluxe Room, 2 Double Beds"
CkJsonObject_UpdateString $json "payment.formsOfPayment[1].virtualCard.rateAmount.amount" "100.00"
CkJsonObject_UpdateString $json "payment.formsOfPayment[1].virtualCard.rateAmount.currencyCode" "USD"
CkJsonObject_UpdateString $json "payment.formsOfPayment[1].virtualCard.virtualCardCharges[0]" "Breakfast"
CkJsonObject_UpdateString $json "payment.formsOfPayment[2].type" "AGENCY_NAME"
CkJsonObject_UpdateString $json "payment.formsOfPayment[2].agencyAddress.name" "John Smith"
CkJsonObject_UpdateString $json "payment.formsOfPayment[2].agencyAddress.street" "1230 Ellen Ave, apt 10"
CkJsonObject_UpdateString $json "payment.formsOfPayment[2].agencyAddress.city" "Dallas"
CkJsonObject_UpdateString $json "payment.formsOfPayment[2].agencyAddress.stateProvince" "TX"
CkJsonObject_UpdateString $json "payment.formsOfPayment[2].agencyAddress.postalCode" "75063"
CkJsonObject_UpdateString $json "payment.formsOfPayment[2].agencyAddress.countryCode" "US"
CkJsonObject_UpdateString $json "payment.formsOfPayment[3].type" "AGENCY_IATA"
CkJsonObject_UpdateString $json "payment.formsOfPayment[3].agencyIataNumber" "129345738"
CkJsonObject_UpdateString $json "payment.formsOfPayment[4].type" "CORPORATE"
CkJsonObject_UpdateString $json "payment.formsOfPayment[4].corporateId" "CC006"
CkJsonObject_UpdateString $json "payment.formsOfPayment[5].type" "COMPANY_NAME"
CkJsonObject_UpdateString $json "payment.formsOfPayment[5].companyAddress.name" "John Smith"
CkJsonObject_UpdateString $json "payment.formsOfPayment[5].companyAddress.street" "1230 Ellen Ave, apt 10"
CkJsonObject_UpdateString $json "payment.formsOfPayment[5].companyAddress.city" "Dallas"
CkJsonObject_UpdateString $json "payment.formsOfPayment[5].companyAddress.stateProvince" "TX"
CkJsonObject_UpdateString $json "payment.formsOfPayment[5].companyAddress.postalCode" "75063"
CkJsonObject_UpdateString $json "payment.formsOfPayment[5].companyAddress.countryCode" "US"

CkHttp_SetRequestHeader $http "accept" "application/json"
CkHttp_SetRequestHeader $http "x-request-id" "dnjas82bd102bd912requestid"
CkHttp_SetRequestHeader $http "X-Sabre-Group" "G7RE"
CkHttp_SetRequestHeader $http "X-Sabre-Current-City" "G7RE"
CkHttp_SetRequestHeader $http "ConversationId" "dnjas82bd102bd912conversationid"
CkHttp_SetRequestHeader $http "Content-Type" "application/json"
# Adds the "Authorization: Bearer <access_token>" header.
CkHttp_put_AuthToken $http "<access_token>"

# resp is a CkHttpResponse
set resp [CkHttp_PostJson3 $http "https://domain.com/v1/trip/orders/createBooking" "application/json" $json]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $json
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp


delete_CkHttp $http
delete_CkJsonObject $json

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "accept: application/json"
	-H "Content-Type: application/json"
	-H "X-Sabre-Group: G7RE"
	-H "X-Sabre-Current-City: G7RE"
	-H "x-request-id: dnjas82bd102bd912requestid"
	-H "ConversationId: dnjas82bd102bd912conversationid"
	-d '{
  "agency": {
    "address": {
      "name": "John Smith",
      "street": "1230 Ellen Ave, apt 10",
      "city": "Dallas",
      "stateProvince": "TX",
      "postalCode": "75063",
      "countryCode": "US",
      "freeText": "John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS"
    },
    "agencyCustomerNumber": "1234567",
    "ticketingPolicy": "TODAY"
  },
  "travelers": [
    {
      "givenName": "John",
      "surname": "Kowalski",
      "passengerCode": "ADT"
    },
    {
      "givenName": "Mary",
      "surname": "Kowalski",
      "passengerCode": "ADT"
    },
    {
      "givenName": "Ann",
      "surname": "Kowalski",
      "passengerCode": "INS",
      "age": 3
    }
  ],
  "contactInfo": {
    "emails": [
      "travel@sabre.com",
      "travel2@sabre.com"
    ],
    "phones": [
      "+123456"
    ]
  },
  "hotel": {
    "useCsl": true,
    "bookingKey": "{{bookingKey}}",
    "corporateDiscountCode": 6878700,
    "rooms": [
      {
        "isSmoking": true,
        "bedTypeCode": 3,
        "physicalDisabilityCode": 3,
        "travelerIndices": [
          1,2,3
        ]
      }
    ],
    "specialInstruction": "Need a wi-fi in the room.",
    "paymentPolicy": "DEPOSIT",
    "formOfPayment": 1
  },
  "payment": {
    "formsOfPayment": [
      {
        "type": "PAYMENTCARD",
        "cardTypeCode": "VI",
        "cardNumber": "4487971000000006",
        "cardSecurityCode": "123",
        "expiryDate": "2022-10",
        "cardHolder": {
          "givenName": "John",
          "surname": "Smith",
          "email": "john@smith.family.priv",
          "phone": "+1-555-123-4567",
          "address": {
            "street": "1230 Ellen Ave, apt 10",
            "city": "Dallas",
            "stateProvince": "TX",
            "postalCode": "75063",
            "countryCode": "US"
          }
        }
      },
      {
        "type": "VIRTUAL_CARD",
        "virtualCard": {
          "customerAccountCode": "John",
          "agencyEmail": "john@smith.family.priv",
          "hotelFax": "john@smith.family.priv",
          "hotelName": "Ilia Hotel and Luxury Suites",
          "roomType": "2 double beds",
          "roomDescription": "Deluxe Room, 2 Double Beds",
          "rateAmount": {
            "amount": "100.00",
            "currencyCode": "USD"
          },
          "virtualCardCharges": [
            "Breakfast"
          ]
        }
      },
      {
        "type": "AGENCY_NAME",
        "agencyAddress": {
          "name": "John Smith",
          "street": "1230 Ellen Ave, apt 10",
          "city": "Dallas",
          "stateProvince": "TX",
          "postalCode": "75063",
          "countryCode": "US"
        }
      },
      {
        "type": "AGENCY_IATA",
        "agencyIataNumber": "129345738"
      },
      {
        "type": "CORPORATE",
        "corporateId": "CC006"
      },
      {
        "type": "COMPANY_NAME",
        "companyAddress": {
          "name": "John Smith",
          "street": "1230 Ellen Ave, apt 10",
          "city": "Dallas",
          "stateProvince": "TX",
          "postalCode": "75063",
          "countryCode": "US"
        }
      }
    ]
  }
}'
https://domain.com/v1/trip/orders/createBooking

Postman Collection Item JSON

{
  "name": "3. createBooking",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "pm.test(\"response is ok\", function () {\r",
          "    pm.response.to.be.ok;\r",
          "    pm.response.to.have.status(200);\r",
          "});\r",
          "\r",
          "pm.test(\"response must be valid and have a body\", function () {\r",
          "    // this assertion also checks if a body  exists\r",
          "     pm.response.to.be.json; \r",
          "});\r",
          "\r",
          "pm.test(\"passed and returned values of x-request-id and ConversationId must be equal\", function () {\r",
          "    pm.expect(pm.response.headers.get('x-request-id')).to.eql('dnjas82bd102bd912requestid');\r",
          "    pm.expect(pm.response.headers.get('ConversationId')).to.eql('dnjas82bd102bd912conversationid');\r",
          "\r",
          "});"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "accept",
        "type": "text",
        "value": "application/json"
      },
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "type": "text",
        "value": "application/json"
      },
      {
        "key": "X-Sabre-Group",
        "value": "G7RE",
        "type": "text"
      },
      {
        "key": "X-Sabre-Current-City",
        "value": "G7RE",
        "type": "text"
      },
      {
        "key": "x-request-id",
        "value": "dnjas82bd102bd912requestid",
        "type": "text"
      },
      {
        "key": "ConversationId",
        "value": "dnjas82bd102bd912conversationid",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"agency\": {\n    \"address\": {\n      \"name\": \"John Smith\",\n      \"street\": \"1230 Ellen Ave, apt 10\",\n      \"city\": \"Dallas\",\n      \"stateProvince\": \"TX\",\n      \"postalCode\": \"75063\",\n      \"countryCode\": \"US\",\n      \"freeText\": \"John Smith\\n1230 Ellen Ave, apt 10\\nDallas, TX 75063\\nUS\"\n    },\n    \"agencyCustomerNumber\": \"1234567\",\n    \"ticketingPolicy\": \"TODAY\"\n  },\n  \"travelers\": [\n    {\n      \"givenName\": \"John\",\n      \"surname\": \"Kowalski\",\n      \"passengerCode\": \"ADT\"\n    },\n    {\n      \"givenName\": \"Mary\",\n      \"surname\": \"Kowalski\",\n      \"passengerCode\": \"ADT\"\n    },\n    {\n      \"givenName\": \"Ann\",\n      \"surname\": \"Kowalski\",\n      \"passengerCode\": \"INS\",\n      \"age\": 3\n    }\n  ],\n  \"contactInfo\": {\n    \"emails\": [\n      \"travel@sabre.com\",\n      \"travel2@sabre.com\"\n    ],\n    \"phones\": [\n      \"+123456\"\n    ]\n  },\n  \"hotel\": {\n    \"useCsl\": true,\n    \"bookingKey\": \"{{bookingKey}}\",\n    \"corporateDiscountCode\": 6878700,\n    \"rooms\": [\n      {\n        \"isSmoking\": true,\n        \"bedTypeCode\": 3,\n        \"physicalDisabilityCode\": 3,\n        \"travelerIndices\": [\n          1,2,3\n        ]\n      }\n    ],\n    \"specialInstruction\": \"Need a wi-fi in the room.\",\n    \"paymentPolicy\": \"DEPOSIT\",\n    \"formOfPayment\": 1\n  },\n  \"payment\": {\n    \"formsOfPayment\": [\n      {\n        \"type\": \"PAYMENTCARD\",\n        \"cardTypeCode\": \"VI\",\n        \"cardNumber\": \"4487971000000006\",\n        \"cardSecurityCode\": \"123\",\n        \"expiryDate\": \"2022-10\",\n        \"cardHolder\": {\n          \"givenName\": \"John\",\n          \"surname\": \"Smith\",\n          \"email\": \"john@smith.family.priv\",\n          \"phone\": \"+1-555-123-4567\",\n          \"address\": {\n            \"street\": \"1230 Ellen Ave, apt 10\",\n            \"city\": \"Dallas\",\n            \"stateProvince\": \"TX\",\n            \"postalCode\": \"75063\",\n            \"countryCode\": \"US\"\n          }\n        }\n      },\n      {\n        \"type\": \"VIRTUAL_CARD\",\n        \"virtualCard\": {\n          \"customerAccountCode\": \"John\",\n          \"agencyEmail\": \"john@smith.family.priv\",\n          \"hotelFax\": \"john@smith.family.priv\",\n          \"hotelName\": \"Ilia Hotel and Luxury Suites\",\n          \"roomType\": \"2 double beds\",\n          \"roomDescription\": \"Deluxe Room, 2 Double Beds\",\n          \"rateAmount\": {\n            \"amount\": \"100.00\",\n            \"currencyCode\": \"USD\"\n          },\n          \"virtualCardCharges\": [\n            \"Breakfast\"\n          ]\n        }\n      },\n      {\n        \"type\": \"AGENCY_NAME\",\n        \"agencyAddress\": {\n          \"name\": \"John Smith\",\n          \"street\": \"1230 Ellen Ave, apt 10\",\n          \"city\": \"Dallas\",\n          \"stateProvince\": \"TX\",\n          \"postalCode\": \"75063\",\n          \"countryCode\": \"US\"\n        }\n      },\n      {\n        \"type\": \"AGENCY_IATA\",\n        \"agencyIataNumber\": \"129345738\"\n      },\n      {\n        \"type\": \"CORPORATE\",\n        \"corporateId\": \"CC006\"\n      },\n      {\n        \"type\": \"COMPANY_NAME\",\n        \"companyAddress\": {\n          \"name\": \"John Smith\",\n          \"street\": \"1230 Ellen Ave, apt 10\",\n          \"city\": \"Dallas\",\n          \"stateProvince\": \"TX\",\n          \"postalCode\": \"75063\",\n          \"countryCode\": \"US\"\n        }\n      }\n    ]\n  }\n}"
    },
    "url": {
      "raw": "{{rest_endpoint}}/v1/trip/orders/createBooking",
      "host": [
        "{{rest_endpoint}}"
      ],
      "path": [
        "v1",
        "trip",
        "orders",
        "createBooking"
      ]
    },
    "description": "### <br>"
  },
  "response": [
  ]
}