Swift3 / Booking Management API v2021.12 / createBooking - Air with multi pricing (per flight)
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// 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": "Smith",
// "birthDate": "1970-01-23",
// "passengerCode": "ADT"
// },
// {
// "givenName": "All",
// "surname": "Smith",
// "birthDate": "2000-01-23",
// "passengerCode": "CNN"
// }
// ],
// "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": {
// "validatingAirlineCode": "EY",
// "flightIndices": [
// 1
// ]
// }
// },
// {
// "qualifiers": {
// "validatingAirlineCode": "EY",
// "flightIndices": [
// 2
// ]
// }
// }
// ]
// },
// "payment": {
// "billingAddress": {
// "name": "John Smith",
// "street": "1230 Ellen Ave, apt 10",
// "city": "Dallas",
// "stateProvince": "TX",
// "postalCode": "75063",
// "countryCode": "US"
// }
// }
// }
let json = CkoJsonObject()!
json.update("agency.address.name", value: "John Smith")
json.update("agency.address.street", value: "1230 Ellen Ave, apt 10")
json.update("agency.address.city", value: "Dallas")
json.update("agency.address.stateProvince", value: "TX")
json.update("agency.address.postalCode", value: "75063")
json.update("agency.address.countryCode", value: "US")
json.update("agency.address.freeText", value: "John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS")
json.update("agency.agencyCustomerNumber", value: "1234567")
json.update("agency.ticketingPolicy", value: "TODAY")
json.update("travelers[0].givenName", value: "John")
json.update("travelers[0].surname", value: "Smith")
json.update("travelers[0].birthDate", value: "1970-01-23")
json.update("travelers[0].passengerCode", value: "ADT")
json.update("travelers[1].givenName", value: "All")
json.update("travelers[1].surname", value: "Smith")
json.update("travelers[1].birthDate", value: "2000-01-23")
json.update("travelers[1].passengerCode", value: "CNN")
json.update("contactInfo.emails[0]", value: "travel@sabre.com")
json.update("contactInfo.emails[1]", value: "travel2@sabre.com")
json.update("contactInfo.phones[0]", value: "+123456")
json.updateInt("flightDetails.flights[0].flightNumber", value: 463)
json.update("flightDetails.flights[0].airlineCode", value: "EY")
json.update("flightDetails.flights[0].fromAirportCode", value: "MEL")
json.update("flightDetails.flights[0].toAirportCode", value: "AUH")
json.update("flightDetails.flights[0].departureDate", value: "{{start_date}}")
json.update("flightDetails.flights[0].departureTime", value: "16:55")
json.update("flightDetails.flights[0].bookingClass", value: "Y")
json.updateBool("flightDetails.flights[0].marriageGroup", value: false)
json.update("flightDetails.flights[0].flightStatusCode", value: "NN")
json.updateInt("flightDetails.flights[1].flightNumber", value: 462)
json.update("flightDetails.flights[1].airlineCode", value: "EY")
json.update("flightDetails.flights[1].fromAirportCode", value: "AUH")
json.update("flightDetails.flights[1].toAirportCode", value: "MEL")
json.update("flightDetails.flights[1].departureDate", value: "{{end_date}}")
json.update("flightDetails.flights[1].departureTime", value: "09:00")
json.update("flightDetails.flights[1].bookingClass", value: "Y")
json.updateBool("flightDetails.flights[1].marriageGroup", value: false)
json.update("flightDetails.flights[1].flightStatusCode", value: "NN")
json.update("flightDetails.flightPricing[0].qualifiers.validatingAirlineCode", value: "EY")
json.updateInt("flightDetails.flightPricing[0].qualifiers.flightIndices[0]", value: 1)
json.update("flightDetails.flightPricing[1].qualifiers.validatingAirlineCode", value: "EY")
json.updateInt("flightDetails.flightPricing[1].qualifiers.flightIndices[0]", value: 2)
json.update("payment.billingAddress.name", value: "John Smith")
json.update("payment.billingAddress.street", value: "1230 Ellen Ave, apt 10")
json.update("payment.billingAddress.city", value: "Dallas")
json.update("payment.billingAddress.stateProvince", value: "TX")
json.update("payment.billingAddress.postalCode", value: "75063")
json.update("payment.billingAddress.countryCode", value: "US")
http.setRequestHeader("Conversation-ID", value: "{{conv_id}}")
http.setRequestHeader("Content-Type", value: "application/json")
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
var resp: CkoHttpResponse? = http.postJson3("https://domain.com/v1/trip/orders/createBooking", contentType: "application/json", json: json)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
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",
"ticketingPolicy": "TODAY"
},
"travelers": [
{
"givenName": "John",
"surname": "Smith",
"birthDate": "1970-01-23",
"passengerCode": "ADT"
},
{
"givenName": "All",
"surname": "Smith",
"birthDate": "2000-01-23",
"passengerCode": "CNN"
}
],
"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": {
"validatingAirlineCode": "EY",
"flightIndices": [1]
}
},
{
"qualifiers": {
"validatingAirlineCode": "EY",
"flightIndices": [2]
}
}
]
},
"payment": {
"billingAddress": {
"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": "createBooking - Air with multi pricing (per flight)",
"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\t\"ticketingPolicy\": \"TODAY\"\n \t},\n\t\"travelers\": [\n\t\t{\n\t\t\t\"givenName\": \"John\",\n\t\t\t\"surname\": \"Smith\",\n\t\t\t\"birthDate\": \"1970-01-23\",\n\t\t\t\"passengerCode\": \"ADT\"\n\t\t},\n {\n\t\t\t\"givenName\": \"All\",\n\t\t\t\"surname\": \"Smith\",\n\t\t\t\"birthDate\": \"2000-01-23\",\n\t\t\t\"passengerCode\": \"CNN\"\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 \"validatingAirlineCode\": \"EY\",\n \"flightIndices\": [1]\n }\n },\n {\n \"qualifiers\": {\n \"validatingAirlineCode\": \"EY\",\n \"flightIndices\": [2]\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 } \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": [
]
}