Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
Dim success As Long
' 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",
' "birthDate": "1970-01-23",
' "passengerCode": "ADT"
' },
' {
' "givenName": "All",
' "surname": "Mrozicki",
' "birthDate": "2000-01-23",
' "passengerCode": "ADT"
' }
' ],
' "contactInfo": {
' "emails": [
' "travel@sabre.com",
' "travel2@sabre.com"
' ],
' "phones": [
' "+123456"
' ]
' },
' "flightDetails": {
' "flights": [
' {
' "flightNumber": "{{oFlightNumber}}",
' "airlineCode": "{{oMarketingAirline}}",
' "fromAirportCode": "{{oDepartureAirport}}",
' "toAirportCode": "{{oArrivalAirport}}",
' "departureDate": "{{start_date}}",
' "departureTime": "{{oDepartureTime}}",
' "bookingClass": "Y",
' "marriageGroup": false,
' "flightStatusCode": "NN",
' "source": "LCC"
' }
' ],
' "flightPricing": [
' {}
' ]
' },
' "payment": {
' "billingAddress": {
' "name": "John Smith",
' "street": "1230 Ellen Ave, apt 10",
' "city": "Dallas",
' "stateProvince": "TX",
' "postalCode": "75063",
' "countryCode": "US"
' }
' }
' }
Dim json As New ChilkatJsonObject
success = json.UpdateString("agency.address.name","John Smith")
success = json.UpdateString("agency.address.street","1230 Ellen Ave, apt 10")
success = json.UpdateString("agency.address.city","Dallas")
success = json.UpdateString("agency.address.stateProvince","TX")
success = json.UpdateString("agency.address.postalCode","75063")
success = json.UpdateString("agency.address.countryCode","US")
success = json.UpdateString("agency.address.freeText","John Smith" & vbLf & "1230 Ellen Ave, apt 10" & vbLf & "Dallas, TX 75063" & vbLf & "US")
success = json.UpdateString("agency.agencyCustomerNumber","1234567")
success = json.UpdateString("agency.ticketingPolicy","TODAY")
success = json.UpdateString("travelers[0].givenName","John")
success = json.UpdateString("travelers[0].surname","Kowalski")
success = json.UpdateString("travelers[0].birthDate","1970-01-23")
success = json.UpdateString("travelers[0].passengerCode","ADT")
success = json.UpdateString("travelers[1].givenName","All")
success = json.UpdateString("travelers[1].surname","Mrozicki")
success = json.UpdateString("travelers[1].birthDate","2000-01-23")
success = json.UpdateString("travelers[1].passengerCode","ADT")
success = json.UpdateString("contactInfo.emails[0]","travel@sabre.com")
success = json.UpdateString("contactInfo.emails[1]","travel2@sabre.com")
success = json.UpdateString("contactInfo.phones[0]","+123456")
success = json.UpdateString("flightDetails.flights[0].flightNumber","{{oFlightNumber}}")
success = json.UpdateString("flightDetails.flights[0].airlineCode","{{oMarketingAirline}}")
success = json.UpdateString("flightDetails.flights[0].fromAirportCode","{{oDepartureAirport}}")
success = json.UpdateString("flightDetails.flights[0].toAirportCode","{{oArrivalAirport}}")
success = json.UpdateString("flightDetails.flights[0].departureDate","{{start_date}}")
success = json.UpdateString("flightDetails.flights[0].departureTime","{{oDepartureTime}}")
success = json.UpdateString("flightDetails.flights[0].bookingClass","Y")
success = json.UpdateBool("flightDetails.flights[0].marriageGroup",0)
success = json.UpdateString("flightDetails.flights[0].flightStatusCode","NN")
success = json.UpdateString("flightDetails.flights[0].source","LCC")
success = json.UpdateString("payment.billingAddress.name","John Smith")
success = json.UpdateString("payment.billingAddress.street","1230 Ellen Ave, apt 10")
success = json.UpdateString("payment.billingAddress.city","Dallas")
success = json.UpdateString("payment.billingAddress.stateProvince","TX")
success = json.UpdateString("payment.billingAddress.postalCode","75063")
success = json.UpdateString("payment.billingAddress.countryCode","US")
http.SetRequestHeader "Conversation-ID","{{conv_id}}"
http.SetRequestHeader "Content-Type","application/json"
' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
Dim resp As ChilkatHttpResponse
Set resp = http.PostJson3("https://domain.com/v1/trip/orders/createBooking","application/json",json)
If (http.LastMethodSuccess = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Debug.Print resp.StatusCode
Debug.Print resp.BodyStr
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": "Kowalski",
"birthDate": "1970-01-23",
"passengerCode": "ADT"
},
{
"givenName": "All",
"surname": "Mrozicki",
"birthDate": "2000-01-23",
"passengerCode": "ADT"
}
],
"contactInfo":
{
"emails": [
"travel@sabre.com",
"travel2@sabre.com"
],
"phones": [
"+123456"
]
},
"flightDetails": {
"flights": [
{
"flightNumber": "{{oFlightNumber}}",
"airlineCode": "{{oMarketingAirline}}",
"fromAirportCode": "{{oDepartureAirport}}",
"toAirportCode": "{{oArrivalAirport}}",
"departureDate": "{{start_date}}",
"departureTime": "{{oDepartureTime}}",
"bookingClass": "Y",
"marriageGroup": false,
"flightStatusCode": "NN",
"source": "LCC"
}
],
"flightPricing": [
{
}
]
},
"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": "2. createBooking - LCC",
"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\": \"Kowalski\",\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\": \"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\": \"{{oFlightNumber}}\",\n\t\t\t\t\"airlineCode\": \"{{oMarketingAirline}}\",\n\t\t\t\t\"fromAirportCode\": \"{{oDepartureAirport}}\",\n\t\t\t\t\"toAirportCode\": \"{{oArrivalAirport}}\",\n\t\t\t\t\"departureDate\": \"{{start_date}}\",\n\t\t\t\t\"departureTime\": \"{{oDepartureTime}}\",\n\t\t\t\t\"bookingClass\": \"Y\",\n\t\t\t\t\"marriageGroup\": false,\n\t\t\t\t\"flightStatusCode\": \"NN\",\n \"source\": \"LCC\"\n\t\t\t}\n\t\t],\n \"flightPricing\": [\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": [
]
}