Back to Collection Items
IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"
Procedure ChilkatExample()
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
http.i = CkHttp::ckCreate()
If http.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success.i
; 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"
; },
; "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",
; "travel2@sabre.com"
; ],
; "phones": [
; "+123456"
; ]
; },
; "flightDetails": {
; "flights": [
; {
; "flightNumber": 463,
; "airlineCode": "EY",
; "fromAirportCode": "MEL",
; "toAirportCode": "AUH",
; "departureDate": "{{start_date}}",
; "departureTime": "16:55",
; "bookingClass": "Y",
; "marriageGroup": false,
; "flightStatusCode": "NN"
; },
; {
; "flightNumber": 462,
; "airlineCode": "EY",
; "fromAirportCode": "AUH",
; "toAirportCode": "MEL",
; "departureDate": "{{end_date}}",
; "departureTime": "09:00",
; "bookingClass": "Y",
; "marriageGroup": false,
; "flightStatusCode": "NN"
; }
; ],
; "flightPricing": [
; {
; "qualifiers": {
; "payment": {
; "primaryFormOfPayment": 1
; }
; }
; }
; ]
; },
; "payment": {
; "billingAddress": {
; "name": "John Smith",
; "street": "1230 Ellen Ave, apt 10",
; "city": "Dallas",
; "stateProvince": "TX",
; "postalCode": "75063",
; "countryCode": "US"
; },
; "formsOfPayment": [
; {
; "type": "PAYMENTCARD",
; "cardTypeCode": "VI",
; "cardNumber": "4005111111111136",
; "expiryDate": "2024-07"
; }
; ]
; }
; }
json.i = CkJsonObject::ckCreate()
If json.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkJsonObject::ckUpdateString(json,"agency.address.name","John Smith")
CkJsonObject::ckUpdateString(json,"agency.address.street","1230 Ellen Ave, apt 10")
CkJsonObject::ckUpdateString(json,"agency.address.city","Dallas")
CkJsonObject::ckUpdateString(json,"agency.address.stateProvince","TX")
CkJsonObject::ckUpdateString(json,"agency.address.postalCode","75063")
CkJsonObject::ckUpdateString(json,"agency.address.countryCode","US")
CkJsonObject::ckUpdateString(json,"agency.address.freeText","John Smith" + Chr(10) + "1230 Ellen Ave, apt 10" + Chr(10) + "Dallas, TX 75063" + Chr(10) + "US")
CkJsonObject::ckUpdateString(json,"agency.agencyCustomerNumber","1234567")
CkJsonObject::ckUpdateString(json,"travelers[0].givenName","John")
CkJsonObject::ckUpdateString(json,"travelers[0].surname","Kowalski")
CkJsonObject::ckUpdateString(json,"travelers[0].birthDate","1970-01-23")
CkJsonObject::ckUpdateString(json,"travelers[0].passengerCode","ADT")
CkJsonObject::ckUpdateString(json,"travelers[1].givenName","Infant")
CkJsonObject::ckUpdateString(json,"travelers[1].surname","Mrozicki")
CkJsonObject::ckUpdateString(json,"travelers[1].birthDate","2020-01-23")
CkJsonObject::ckUpdateString(json,"travelers[1].passengerCode","INF")
CkJsonObject::ckUpdateString(json,"travelers[2].givenName","All")
CkJsonObject::ckUpdateString(json,"travelers[2].surname","Mrozicki")
CkJsonObject::ckUpdateString(json,"travelers[2].birthDate","2000-01-23")
CkJsonObject::ckUpdateString(json,"travelers[2].passengerCode","ADT")
CkJsonObject::ckUpdateString(json,"contactInfo.emails[0]","travel@sabre.com")
CkJsonObject::ckUpdateString(json,"contactInfo.emails[1]","travel2@sabre.com")
CkJsonObject::ckUpdateString(json,"contactInfo.phones[0]","+123456")
CkJsonObject::ckUpdateInt(json,"flightDetails.flights[0].flightNumber",463)
CkJsonObject::ckUpdateString(json,"flightDetails.flights[0].airlineCode","EY")
CkJsonObject::ckUpdateString(json,"flightDetails.flights[0].fromAirportCode","MEL")
CkJsonObject::ckUpdateString(json,"flightDetails.flights[0].toAirportCode","AUH")
CkJsonObject::ckUpdateString(json,"flightDetails.flights[0].departureDate","{{start_date}}")
CkJsonObject::ckUpdateString(json,"flightDetails.flights[0].departureTime","16:55")
CkJsonObject::ckUpdateString(json,"flightDetails.flights[0].bookingClass","Y")
CkJsonObject::ckUpdateBool(json,"flightDetails.flights[0].marriageGroup",0)
CkJsonObject::ckUpdateString(json,"flightDetails.flights[0].flightStatusCode","NN")
CkJsonObject::ckUpdateInt(json,"flightDetails.flights[1].flightNumber",462)
CkJsonObject::ckUpdateString(json,"flightDetails.flights[1].airlineCode","EY")
CkJsonObject::ckUpdateString(json,"flightDetails.flights[1].fromAirportCode","AUH")
CkJsonObject::ckUpdateString(json,"flightDetails.flights[1].toAirportCode","MEL")
CkJsonObject::ckUpdateString(json,"flightDetails.flights[1].departureDate","{{end_date}}")
CkJsonObject::ckUpdateString(json,"flightDetails.flights[1].departureTime","09:00")
CkJsonObject::ckUpdateString(json,"flightDetails.flights[1].bookingClass","Y")
CkJsonObject::ckUpdateBool(json,"flightDetails.flights[1].marriageGroup",0)
CkJsonObject::ckUpdateString(json,"flightDetails.flights[1].flightStatusCode","NN")
CkJsonObject::ckUpdateInt(json,"flightDetails.flightPricing[0].qualifiers.payment.primaryFormOfPayment",1)
CkJsonObject::ckUpdateString(json,"payment.billingAddress.name","John Smith")
CkJsonObject::ckUpdateString(json,"payment.billingAddress.street","1230 Ellen Ave, apt 10")
CkJsonObject::ckUpdateString(json,"payment.billingAddress.city","Dallas")
CkJsonObject::ckUpdateString(json,"payment.billingAddress.stateProvince","TX")
CkJsonObject::ckUpdateString(json,"payment.billingAddress.postalCode","75063")
CkJsonObject::ckUpdateString(json,"payment.billingAddress.countryCode","US")
CkJsonObject::ckUpdateString(json,"payment.formsOfPayment[0].type","PAYMENTCARD")
CkJsonObject::ckUpdateString(json,"payment.formsOfPayment[0].cardTypeCode","VI")
CkJsonObject::ckUpdateString(json,"payment.formsOfPayment[0].cardNumber","4005111111111136")
CkJsonObject::ckUpdateString(json,"payment.formsOfPayment[0].expiryDate","2024-07")
CkHttp::ckSetRequestHeader(http,"Conversation-ID","{{conv_id}}")
CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")
; Adds the "Authorization: Bearer <access_token>" header.
CkHttp::setCkAuthToken(http, "<access_token>")
resp.i = CkHttp::ckPostJson3(http,"https://domain.com/v1/trip/orders/createBooking","application/json",json)
If CkHttp::ckLastMethodSuccess(http) = 0
Debug CkHttp::ckLastErrorText(http)
CkHttp::ckDispose(http)
CkJsonObject::ckDispose(json)
ProcedureReturn
EndIf
Debug Str(CkHttpResponse::ckStatusCode(resp))
Debug CkHttpResponse::ckBodyStr(resp)
CkHttpResponse::ckDispose(resp)
CkHttp::ckDispose(http)
CkJsonObject::ckDispose(json)
ProcedureReturn
EndProcedure
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"
},
"agencyCustomerNumber": "1234567"
},
"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",
"travel2@sabre.com"
],
"phones": [
"+123456"
]
},
"flightDetails": {
"flights": [
{
"flightNumber": 463,
"airlineCode": "EY",
"fromAirportCode": "MEL",
"toAirportCode": "AUH",
"departureDate": "{{start_date}}",
"departureTime": "16:55",
"bookingClass": "Y",
"marriageGroup": false,
"flightStatusCode": "NN"
},
{
"flightNumber": 462,
"airlineCode": "EY",
"fromAirportCode": "AUH",
"toAirportCode": "MEL",
"departureDate": "{{end_date}}",
"departureTime": "09:00",
"bookingClass": "Y",
"marriageGroup": false,
"flightStatusCode": "NN"
}
],
"flightPricing": [
{
"qualifiers": {
"payment": {
"primaryFormOfPayment": 1
}
}
}
]
},
"payment": {
"billingAddress": {
"name": "John Smith",
"street": "1230 Ellen Ave, apt 10",
"city": "Dallas",
"stateProvince": "TX",
"postalCode": "75063",
"countryCode": "US"
},
"formsOfPayment": [
{
"type": "PAYMENTCARD",
"cardTypeCode": "VI",
"cardNumber": "4005111111111136",
"expiryDate": "2024-07"
}
]
}
}'
https://domain.com/v1/trip/orders/createBooking
Postman Collection Item JSON
{
"name": "createBooking - Air with pricing and FOP",
"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\t \"agency\": {\n\t\t\"address\": {\n\t\t\t\"name\": \"John Smith\",\n\t\t\t\"street\": \"1230 Ellen Ave, apt 10\",\n\t\t\t\"city\": \"Dallas\",\n\t\t\t\"stateProvince\": \"TX\",\n\t\t\t\"postalCode\": \"75063\",\n\t\t\t\"countryCode\": \"US\",\n\t\t\t\"freeText\": \"John Smith\\n1230 Ellen Ave, apt 10\\nDallas, TX 75063\\nUS\"\n\t\t},\n\t\t\"agencyCustomerNumber\": \"1234567\"\n \t},\n\t\"travelers\": [\n\t\t{\n\t\t\t\"givenName\": \"John\",\n\t\t\t\"surname\": \"Kowalski\",\n\t\t\t\"birthDate\": \"1970-01-23\",\n\t\t\t\"passengerCode\": \"ADT\"\n\t\t},\n {\n\t\t\t\"givenName\": \"Infant\",\n\t\t\t\"surname\": \"Mrozicki\",\n\t\t\t\"birthDate\": \"2020-01-23\",\n\t\t\t\"passengerCode\": \"INF\"\n\t\t},\n {\n\t\t\t\"givenName\": \"All\",\n\t\t\t\"surname\": \"Mrozicki\",\n\t\t\t\"birthDate\": \"2000-01-23\",\n\t\t\t\"passengerCode\": \"ADT\"\n\t\t}\n\t],\n\t\"contactInfo\":\n {\n \"emails\": [\n \"travel@sabre.com\",\n\t\t\"travel2@sabre.com\"\n ],\n \"phones\": [\n \"+123456\"\n ]\n },\n\t\"flightDetails\": {\n\t\t\"flights\": [\n\t\t\t{\n\t\t\t\t\"flightNumber\": 463,\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\": \"16:55\",\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\": 462,\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\": \"09:00\",\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 \"payment\": {\n \"primaryFormOfPayment\": 1\n }\n }\n }\n ]\n\t},\n \"payment\": {\n \"billingAddress\": {\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 \"formsOfPayment\": [\n {\n \"type\": \"PAYMENTCARD\",\n \"cardTypeCode\": \"VI\",\n \"cardNumber\": \"4005111111111136\",\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": [
]
}