TCL / Booking Management API v2021.12 / createBooking - Air with loyaltyPrograms + pricing qualifiers + Credit card
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"
# }
# },
# "travelers": [
# {
# "givenName": "John",
# "surname": "Kowalski",
# "birthDate": "1970-01-23",
# "passengerCode": "ADT"
# },
# {
# "givenName": "Infant",
# "surname": "Mrozicki",
# "birthDate": "2020-01-23",
# "passengerCode": "INF"
# },
# {
# "givenName": "All",
# "surname": "Mrozicki",
# "birthDate": "2000-01-23",
# "passengerCode": "ADT"
# }
# ],
# "contactInfo": {
# "emails": [
# "travel@sabre.com"
# ],
# "phones": [
# "+48666555444"
# ]
# },
# "flightDetails": {
# "flights": [
# {
# "flightNumber": 461,
# "airlineCode": "EY",
# "fromAirportCode": "MEL",
# "toAirportCode": "AUH",
# "departureDate": "{{start_date}}",
# "departureTime": "22:25",
# "bookingClass": "Y",
# "marriageGroup": false,
# "flightStatusCode": "NN"
# },
# {
# "flightNumber": 460,
# "airlineCode": "EY",
# "fromAirportCode": "AUH",
# "toAirportCode": "MEL",
# "departureDate": "{{end_date}}",
# "departureTime": "21:45",
# "bookingClass": "Y",
# "marriageGroup": false,
# "flightStatusCode": "NN"
# }
# ],
# "flightPricing": [
# {
# "qualifiers": {
# "commissionPercentage": "10.00",
# "payment": {
# "primaryFormOfPayment": 1
# }
# }
# }
# ]
# },
# "payment": {
# "formsOfPayment": [
# {
# "type": "PAYMENTCARD",
# "cardTypeCode": "VI",
# "cardNumber": "4537156488578956",
# "expiryDate": "2024-07"
# }
# ]
# }
# }
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 "travelers[0].givenName" "John"
CkJsonObject_UpdateString $json "travelers[0].surname" "Kowalski"
CkJsonObject_UpdateString $json "travelers[0].birthDate" "1970-01-23"
CkJsonObject_UpdateString $json "travelers[0].passengerCode" "ADT"
CkJsonObject_UpdateString $json "travelers[1].givenName" "Infant"
CkJsonObject_UpdateString $json "travelers[1].surname" "Mrozicki"
CkJsonObject_UpdateString $json "travelers[1].birthDate" "2020-01-23"
CkJsonObject_UpdateString $json "travelers[1].passengerCode" "INF"
CkJsonObject_UpdateString $json "travelers[2].givenName" "All"
CkJsonObject_UpdateString $json "travelers[2].surname" "Mrozicki"
CkJsonObject_UpdateString $json "travelers[2].birthDate" "2000-01-23"
CkJsonObject_UpdateString $json "travelers[2].passengerCode" "ADT"
CkJsonObject_UpdateString $json "contactInfo.emails[0]" "travel@sabre.com"
CkJsonObject_UpdateString $json "contactInfo.phones[0]" "+48666555444"
CkJsonObject_UpdateInt $json "flightDetails.flights[0].flightNumber" 461
CkJsonObject_UpdateString $json "flightDetails.flights[0].airlineCode" "EY"
CkJsonObject_UpdateString $json "flightDetails.flights[0].fromAirportCode" "MEL"
CkJsonObject_UpdateString $json "flightDetails.flights[0].toAirportCode" "AUH"
CkJsonObject_UpdateString $json "flightDetails.flights[0].departureDate" "{{start_date}}"
CkJsonObject_UpdateString $json "flightDetails.flights[0].departureTime" "22:25"
CkJsonObject_UpdateString $json "flightDetails.flights[0].bookingClass" "Y"
CkJsonObject_UpdateBool $json "flightDetails.flights[0].marriageGroup" 0
CkJsonObject_UpdateString $json "flightDetails.flights[0].flightStatusCode" "NN"
CkJsonObject_UpdateInt $json "flightDetails.flights[1].flightNumber" 460
CkJsonObject_UpdateString $json "flightDetails.flights[1].airlineCode" "EY"
CkJsonObject_UpdateString $json "flightDetails.flights[1].fromAirportCode" "AUH"
CkJsonObject_UpdateString $json "flightDetails.flights[1].toAirportCode" "MEL"
CkJsonObject_UpdateString $json "flightDetails.flights[1].departureDate" "{{end_date}}"
CkJsonObject_UpdateString $json "flightDetails.flights[1].departureTime" "21:45"
CkJsonObject_UpdateString $json "flightDetails.flights[1].bookingClass" "Y"
CkJsonObject_UpdateBool $json "flightDetails.flights[1].marriageGroup" 0
CkJsonObject_UpdateString $json "flightDetails.flights[1].flightStatusCode" "NN"
CkJsonObject_UpdateString $json "flightDetails.flightPricing[0].qualifiers.commissionPercentage" "10.00"
CkJsonObject_UpdateInt $json "flightDetails.flightPricing[0].qualifiers.payment.primaryFormOfPayment" 1
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].type" "PAYMENTCARD"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardTypeCode" "VI"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].cardNumber" "4537156488578956"
CkJsonObject_UpdateString $json "payment.formsOfPayment[0].expiryDate" "2024-07"
CkHttp_SetRequestHeader $http "Conversation-ID" "{{conv_id}}"
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 "Content-Type: application/json"
-H "Conversation-ID: {{conv_id}}"
-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"
}
},
"travelers": [
{
"givenName": "John",
"surname": "Kowalski",
"birthDate": "1970-01-23",
"passengerCode": "ADT"
},
{
"givenName": "Infant",
"surname": "Mrozicki",
"birthDate": "2020-01-23",
"passengerCode": "INF"
},
{
"givenName": "All",
"surname": "Mrozicki",
"birthDate": "2000-01-23",
"passengerCode": "ADT"
}
],
"contactInfo": {
"emails": [
"travel@sabre.com"
],
"phones": [
"+48666555444"
]
},
"flightDetails": {
"flights": [
{
"flightNumber": 461,
"airlineCode": "EY",
"fromAirportCode": "MEL",
"toAirportCode": "AUH",
"departureDate": "{{start_date}}",
"departureTime": "22:25",
"bookingClass": "Y",
"marriageGroup": false,
"flightStatusCode": "NN"
},
{
"flightNumber": 460,
"airlineCode": "EY",
"fromAirportCode": "AUH",
"toAirportCode": "MEL",
"departureDate": "{{end_date}}",
"departureTime": "21:45",
"bookingClass": "Y",
"marriageGroup": false,
"flightStatusCode": "NN"
}
],
"flightPricing": [
{
"qualifiers": {
"commissionPercentage": "10.00",
"payment": {
"primaryFormOfPayment": 1
}
}
}
]
},
"payment": {
"formsOfPayment": [
{
"type": "PAYMENTCARD",
"cardTypeCode": "VI",
"cardNumber": "4537156488578956",
"expiryDate": "2024-07"
}
]
}
}'
https://domain.com/v1/trip/orders/createBooking
Postman Collection Item JSON
{
"name": "createBooking - Air with loyaltyPrograms + pricing qualifiers + Credit card",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "Conversation-ID",
"type": "text",
"value": "{{conv_id}}"
}
],
"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 },\n \"travelers\": [\n {\n \"givenName\": \"John\",\n \"surname\": \"Kowalski\",\n \"birthDate\": \"1970-01-23\",\n \"passengerCode\": \"ADT\"\n },\n {\n \"givenName\": \"Infant\",\n \"surname\": \"Mrozicki\",\n \"birthDate\": \"2020-01-23\",\n \"passengerCode\": \"INF\"\n },\n {\n \"givenName\": \"All\",\n \"surname\": \"Mrozicki\",\n \"birthDate\": \"2000-01-23\",\n \"passengerCode\": \"ADT\"\n }\n ],\n \"contactInfo\": {\n \"emails\": [\n \"travel@sabre.com\"\n ],\n \"phones\": [\n \"+48666555444\"\n ]\n },\n \"flightDetails\": {\n\t\t\"flights\": [\n\t\t\t{\n\t\t\t\t\"flightNumber\": 461,\n\t\t\t\t\"airlineCode\": \"EY\",\n\t\t\t\t\"fromAirportCode\": \"MEL\",\n\t\t\t\t\"toAirportCode\": \"AUH\",\n\t\t\t\t\"departureDate\": \"{{start_date}}\",\n\t\t\t\t\"departureTime\": \"22:25\",\n\t\t\t\t\"bookingClass\": \"Y\",\n\t\t\t\t\"marriageGroup\": false,\n\t\t\t\t\"flightStatusCode\": \"NN\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"flightNumber\": 460,\n\t\t\t\t\"airlineCode\": \"EY\",\n\t\t\t\t\"fromAirportCode\": \"AUH\",\n\t\t\t\t\"toAirportCode\": \"MEL\",\n\t\t\t\t\"departureDate\": \"{{end_date}}\",\n\t\t\t\t\"departureTime\": \"21:45\",\n\t\t\t\t\"bookingClass\": \"Y\",\n\t\t\t\t\"marriageGroup\": false,\n\t\t\t\t\"flightStatusCode\": \"NN\"\n\t\t\t}\n\t\t],\n \"flightPricing\": [\n {\n \"qualifiers\": {\n \"commissionPercentage\": \"10.00\",\n \"payment\": {\n \"primaryFormOfPayment\": 1\n }\n }\n }\n ]\n },\n \"payment\": {\n \"formsOfPayment\": [\n {\n \"type\": \"PAYMENTCARD\",\n \"cardTypeCode\": \"VI\",\n \"cardNumber\": \"4537156488578956\",\n \"expiryDate\": \"2024-07\"\n }\n ]\n }\n}"
},
"url": {
"raw": "{{rest_endpoint}}/v1/trip/orders/createBooking",
"host": [
"{{rest_endpoint}}"
],
"path": [
"v1",
"trip",
"orders",
"createBooking"
]
},
"description": "[//]: # \"Start\"\n\n<b>[Description](https://developer.sabre.com/docs/rest_apis/trip/orders/booking_management), [Resources](https://developer.sabre.com/docs/rest_apis/trip/orders/booking_management/reference-documentation), [Help](https://developer.sabre.com/docs/rest_apis/trip/orders/booking_management/help)</b>\n\n[//]: # \"End\""
},
"response": [
]
}