Chilkat Online Tools

autoit / Booking Management API v2021.12 / 2. createBooking - ATPCO payload

Back to Collection Items

; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

$oHttp = ObjCreate("Chilkat_9_5_0.Http")
Local $bSuccess

; 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",
;       "identityDocuments": [
;         {
;           "documentNumber": "0123456789",
;           "documentType": "PASSPORT",
;           "expiryDate": "2024-07-09",
;           "issuingCountryCode": "US",
;           "residenceCountryCode": "US",
;           "givenName": "John",
;           "middleName": "Jack",
;           "surname": "Smith",
;           "birthDate": "1980-12-02",
;           "gender": "MALE"
;         }
;       ]
;     }
;   ],
;   "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"
;       }
;     ],
;     "flightPricing": [
;       {}
;     ]
;   },
;   "payment": {
;     "billingAddress": {
;       "name": "John Smith",
;       "street": "1230 Ellen Ave, apt 10",
;       "city": "Dallas",
;       "stateProvince": "TX",
;       "postalCode": "75063",
;       "countryCode": "US"
;     }
;   }
; }

$oJson = ObjCreate("Chilkat_9_5_0.JsonObject")
$oJson.UpdateString("agency.address.name","John Smith")
$oJson.UpdateString("agency.address.street","1230 Ellen Ave, apt 10")
$oJson.UpdateString("agency.address.city","Dallas")
$oJson.UpdateString("agency.address.stateProvince","TX")
$oJson.UpdateString("agency.address.postalCode","75063")
$oJson.UpdateString("agency.address.countryCode","US")
$oJson.UpdateString("agency.address.freeText","John Smith" & @LF & "1230 Ellen Ave, apt 10" & @LF & "Dallas, TX 75063" & @LF & "US")
$oJson.UpdateString("agency.agencyCustomerNumber","1234567")
$oJson.UpdateString("agency.ticketingPolicy","TODAY")
$oJson.UpdateString("travelers[0].givenName","John")
$oJson.UpdateString("travelers[0].surname","Smith")
$oJson.UpdateString("travelers[0].birthDate","1970-01-23")
$oJson.UpdateString("travelers[0].passengerCode","ADT")
$oJson.UpdateString("travelers[0].identityDocuments[0].documentNumber","0123456789")
$oJson.UpdateString("travelers[0].identityDocuments[0].documentType","PASSPORT")
$oJson.UpdateString("travelers[0].identityDocuments[0].expiryDate","2024-07-09")
$oJson.UpdateString("travelers[0].identityDocuments[0].issuingCountryCode","US")
$oJson.UpdateString("travelers[0].identityDocuments[0].residenceCountryCode","US")
$oJson.UpdateString("travelers[0].identityDocuments[0].givenName","John")
$oJson.UpdateString("travelers[0].identityDocuments[0].middleName","Jack")
$oJson.UpdateString("travelers[0].identityDocuments[0].surname","Smith")
$oJson.UpdateString("travelers[0].identityDocuments[0].birthDate","1980-12-02")
$oJson.UpdateString("travelers[0].identityDocuments[0].gender","MALE")
$oJson.UpdateString("contactInfo.emails[0]","travel@sabre.com")
$oJson.UpdateString("contactInfo.emails[1]","travel2@sabre.com")
$oJson.UpdateString("contactInfo.phones[0]","+123456")
$oJson.UpdateString("flightDetails.flights[0].flightNumber","{{oFlightNumber}}")
$oJson.UpdateString("flightDetails.flights[0].airlineCode","{{oMarketingAirline}}")
$oJson.UpdateString("flightDetails.flights[0].fromAirportCode","{{oDepartureAirport}}")
$oJson.UpdateString("flightDetails.flights[0].toAirportCode","{{oArrivalAirport}}")
$oJson.UpdateString("flightDetails.flights[0].departureDate","{{start_date}}")
$oJson.UpdateString("flightDetails.flights[0].departureTime","{{oDepartureTime}}")
$oJson.UpdateString("flightDetails.flights[0].bookingClass","Y")
$oJson.UpdateBool("flightDetails.flights[0].marriageGroup",False)
$oJson.UpdateString("flightDetails.flights[0].flightStatusCode","NN")
$oJson.UpdateString("payment.billingAddress.name","John Smith")
$oJson.UpdateString("payment.billingAddress.street","1230 Ellen Ave, apt 10")
$oJson.UpdateString("payment.billingAddress.city","Dallas")
$oJson.UpdateString("payment.billingAddress.stateProvince","TX")
$oJson.UpdateString("payment.billingAddress.postalCode","75063")
$oJson.UpdateString("payment.billingAddress.countryCode","US")

$oHttp.SetRequestHeader "Conversation-ID","{{conv_id}}"
$oHttp.SetRequestHeader "Content-Type","application/json"
; Adds the "Authorization: Bearer <access_token>" header.
$oHttp.AuthToken = "<access_token>"

Local $oResp = $oHttp.PostJson3("https://domain.com/v1/trip/orders/createBooking","application/json",$oJson)
If ($oHttp.LastMethodSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)

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",
            "identityDocuments": [
            {
                "documentNumber": "0123456789",
                "documentType": "PASSPORT",
                "expiryDate": "2024-07-09",
                "issuingCountryCode": "US",
                "residenceCountryCode": "US",
                "givenName": "John",
                "middleName": "Jack",
                "surname": "Smith",
                "birthDate": "1980-12-02",
                "gender": "MALE"
            }
            ]
		}
	],
	"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"
			}
		],
        "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 - ATPCO payload",
  "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            \"identityDocuments\": [\n            {\n                \"documentNumber\": \"0123456789\",\n                \"documentType\": \"PASSPORT\",\n                \"expiryDate\": \"2024-07-09\",\n                \"issuingCountryCode\": \"US\",\n                \"residenceCountryCode\": \"US\",\n                \"givenName\": \"John\",\n                \"middleName\": \"Jack\",\n                \"surname\": \"Smith\",\n                \"birthDate\": \"1980-12-02\",\n                \"gender\": \"MALE\"\n            }\n            ]\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\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": [
  ]
}