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": "Smith",
' "birthDate": "1970-01-23",
' "passengerCode": "ADT",
' "ancillaries": [
' {
' "reasonForIssuanceCode": "C",
' "electronicMiscellaneousDocumentType": "FLIGHT_COUPON_ASSOCIATED",
' "reasonForIssuanceName": "BAGGAGE",
' "subcode": "0CC",
' "airlineCode": "LH",
' "groupCode": "BG",
' "basePrice": "35.00",
' "currencyCode": "USD",
' "flightIndices": [
' 1
' ]
' }
' ],
' "specialServices": [
' {
' "code": "FBAG"
' }
' ]
' },
' {
' "givenName": "Mary",
' "surname": "Smith",
' "birthDate": "1970-01-23",
' "passengerCode": "ADT"
' }
' ],
' "contactInfo": {
' "emails": [
' "travel@sabre.com",
' "travel2@sabre.com"
' ],
' "phones": [
' "+123456"
' ]
' },
' "flightDetails": {
' "flights": [
' {
' "flightNumber": 809,
' "airlineCode": "LH",
' "fromAirportCode": "ARN",
' "toAirportCode": "FRA",
' "departureDate": "2021-11-20",
' "departureTime": "06:15",
' "bookingClass": "Y",
' "flightStatusCode": "NN"
' }
' ],
' "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","Smith")
success = json.UpdateString("travelers[0].birthDate","1970-01-23")
success = json.UpdateString("travelers[0].passengerCode","ADT")
success = json.UpdateString("travelers[0].ancillaries[0].reasonForIssuanceCode","C")
success = json.UpdateString("travelers[0].ancillaries[0].electronicMiscellaneousDocumentType","FLIGHT_COUPON_ASSOCIATED")
success = json.UpdateString("travelers[0].ancillaries[0].reasonForIssuanceName","BAGGAGE")
success = json.UpdateString("travelers[0].ancillaries[0].subcode","0CC")
success = json.UpdateString("travelers[0].ancillaries[0].airlineCode","LH")
success = json.UpdateString("travelers[0].ancillaries[0].groupCode","BG")
success = json.UpdateString("travelers[0].ancillaries[0].basePrice","35.00")
success = json.UpdateString("travelers[0].ancillaries[0].currencyCode","USD")
success = json.UpdateInt("travelers[0].ancillaries[0].flightIndices[0]",1)
success = json.UpdateString("travelers[0].specialServices[0].code","FBAG")
success = json.UpdateString("travelers[1].givenName","Mary")
success = json.UpdateString("travelers[1].surname","Smith")
success = json.UpdateString("travelers[1].birthDate","1970-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.UpdateInt("flightDetails.flights[0].flightNumber",809)
success = json.UpdateString("flightDetails.flights[0].airlineCode","LH")
success = json.UpdateString("flightDetails.flights[0].fromAirportCode","ARN")
success = json.UpdateString("flightDetails.flights[0].toAirportCode","FRA")
success = json.UpdateString("flightDetails.flights[0].departureDate","2021-11-20")
success = json.UpdateString("flightDetails.flights[0].departureTime","06:15")
success = json.UpdateString("flightDetails.flights[0].bookingClass","Y")
success = json.UpdateString("flightDetails.flights[0].flightStatusCode","NN")
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 "accept","application/json"
http.SetRequestHeader "Content-Type","application/json"
http.SetRequestHeader "X-Sabre-Group","G7RE"
' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
http.SetRequestHeader "X-Sabre-Current-City","G7RE"
Dim resp As ChilkatHttpResponse
Set resp = http.PostJson3("https://domain.com/","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 "accept: application/json"
-H "Content-Type: application/json"
-H "X-Sabre-Group: G7RE"
-H "X-Sabre-Current-City: G7RE"
-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",
"ancillaries": [
{
"reasonForIssuanceCode": "C",
"electronicMiscellaneousDocumentType": "FLIGHT_COUPON_ASSOCIATED",
"reasonForIssuanceName": "BAGGAGE",
"subcode": "0CC",
"airlineCode": "LH",
"groupCode": "BG",
"basePrice": "35.00",
"currencyCode": "USD",
"flightIndices": [
1
]
}
],
"specialServices": [
{
"code": "FBAG"
}
]
},
{
"givenName": "Mary",
"surname": "Smith",
"birthDate": "1970-01-23",
"passengerCode": "ADT"
}
],
"contactInfo": {
"emails": [
"travel@sabre.com",
"travel2@sabre.com"
],
"phones": [
"+123456"
]
},
"flightDetails": {
"flights": [
{
"flightNumber": 809,
"airlineCode": "LH",
"fromAirportCode": "ARN",
"toAirportCode": "FRA",
"departureDate": "2021-11-20",
"departureTime": "06:15",
"bookingClass": "Y",
"flightStatusCode": "NN"
}
],
"flightPricing": [
{}
]
},
"payment": {
"billingAddress": {
"name": "John Smith",
"street": "1230 Ellen Ave, apt 10",
"city": "Dallas",
"stateProvince": "TX",
"postalCode": "75063",
"countryCode": "US"
}
}
}'
https://domain.com/
Postman Collection Item JSON
{
"name": "createBooking - Ancillaries baggage with SSR",
"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",
"});"
],
"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"
}
],
"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\": \"Smith\",\n \"birthDate\": \"1970-01-23\",\n \"passengerCode\": \"ADT\",\n \"ancillaries\": [\n {\n \"reasonForIssuanceCode\": \"C\",\n \"electronicMiscellaneousDocumentType\": \"FLIGHT_COUPON_ASSOCIATED\",\n \"reasonForIssuanceName\": \"BAGGAGE\",\n \"subcode\": \"0CC\",\n \"airlineCode\": \"LH\",\n \"groupCode\": \"BG\",\n \"basePrice\": \"35.00\",\n \"currencyCode\": \"USD\",\n \"flightIndices\": [\n 1\n ]\n }\n ],\n \"specialServices\": [\n {\n \"code\": \"FBAG\"\n }\n ]\n },\n {\n \"givenName\": \"Mary\",\n \"surname\": \"Smith\",\n \"birthDate\": \"1970-01-23\",\n \"passengerCode\": \"ADT\"\n }\n ],\n \"contactInfo\": {\n \"emails\": [\n \"travel@sabre.com\",\n \"travel2@sabre.com\"\n ],\n \"phones\": [\n \"+123456\"\n ]\n },\n \"flightDetails\": {\n \"flights\": [\n {\n \"flightNumber\": 809,\n \"airlineCode\": \"LH\",\n \"fromAirportCode\": \"ARN\",\n \"toAirportCode\": \"FRA\",\n \"departureDate\": \"2021-11-20\",\n \"departureTime\": \"06:15\",\n \"bookingClass\": \"Y\",\n \"flightStatusCode\": \"NN\"\n }\n ],\n \"flightPricing\": [\n {}\n ]\n },\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": "{{createBooking_endpoint}}",
"host": [
"{{createBooking_endpoint}}"
]
},
"description": "### <br>"
},
"response": [
]
}