Chilkat Online Tools

Foxpro / Booking Management API v2021.12 / createBooking - Air with Profile filter

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loJson
LOCAL loResp

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

loHttp = CreateObject('Chilkat_9_5_0.Http')

* 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"
*   },
*   "profiles": [
*     {
*       "uniqueId": "{{profileId}}",
*       "profileTypeCode": "TVL",
*       "domainId": "{{pcc}}"
*     }
*   ],
*   "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"
*       }
*     ]
*   }
* }

loJson = CreateObject('Chilkat_9_5_0.JsonObject')
loJson.UpdateString("agency.address.name","John Smith")
loJson.UpdateString("agency.address.street","1230 Ellen Ave, apt 10")
loJson.UpdateString("agency.address.city","Dallas")
loJson.UpdateString("agency.address.stateProvince","TX")
loJson.UpdateString("agency.address.postalCode","75063")
loJson.UpdateString("agency.address.countryCode","US")
loJson.UpdateString("agency.address.freeText","John Smith" + CHR(10) + "1230 Ellen Ave, apt 10" + CHR(10) + "Dallas, TX 75063" + CHR(10) + "US")
loJson.UpdateString("agency.agencyCustomerNumber","1234567")
loJson.UpdateString("agency.ticketingPolicy","TODAY")
loJson.UpdateString("profiles[0].uniqueId","{{profileId}}")
loJson.UpdateString("profiles[0].profileTypeCode","TVL")
loJson.UpdateString("profiles[0].domainId","{{pcc}}")
loJson.UpdateInt("flightDetails.flights[0].flightNumber",463)
loJson.UpdateString("flightDetails.flights[0].airlineCode","EY")
loJson.UpdateString("flightDetails.flights[0].fromAirportCode","MEL")
loJson.UpdateString("flightDetails.flights[0].toAirportCode","AUH")
loJson.UpdateString("flightDetails.flights[0].departureDate","{{start_date}}")
loJson.UpdateString("flightDetails.flights[0].departureTime","16:55")
loJson.UpdateString("flightDetails.flights[0].bookingClass","Y")
loJson.UpdateBool("flightDetails.flights[0].marriageGroup",0)
loJson.UpdateString("flightDetails.flights[0].flightStatusCode","NN")
loJson.UpdateInt("flightDetails.flights[1].flightNumber",462)
loJson.UpdateString("flightDetails.flights[1].airlineCode","EY")
loJson.UpdateString("flightDetails.flights[1].fromAirportCode","AUH")
loJson.UpdateString("flightDetails.flights[1].toAirportCode","MEL")
loJson.UpdateString("flightDetails.flights[1].departureDate","{{end_date}}")
loJson.UpdateString("flightDetails.flights[1].departureTime","09:00")
loJson.UpdateString("flightDetails.flights[1].bookingClass","Y")
loJson.UpdateBool("flightDetails.flights[1].marriageGroup",0)
loJson.UpdateString("flightDetails.flights[1].flightStatusCode","NN")

loHttp.SetRequestHeader("Conversation-ID","{{conv_id}}")
loHttp.SetRequestHeader("Content-Type","application/json")
* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"

loResp = loHttp.PostJson3("https://domain.com/v1/trip/orders/createBooking","application/json",loJson)
IF (loHttp.LastMethodSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loJson
    CANCEL
ENDIF

? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp

RELEASE loHttp
RELEASE loJson

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"
		},
	"profiles": [ 
		{
		"uniqueId": "{{profileId}}",
		"profileTypeCode": "TVL",
		"domainId": "{{pcc}}"
		}
	],
	"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"
			}
		]
	}
}'
https://domain.com/v1/trip/orders/createBooking

Postman Collection Item JSON

{
  "name": "createBooking - Air with Profile filter",
  "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\t},\n\t\"profiles\": [ \n\t\t{\n\t\t\"uniqueId\": \"{{profileId}}\",\n\t\t\"profileTypeCode\": \"TVL\",\n\t\t\"domainId\": \"{{pcc}}\"\n\t\t}\n\t],\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\t}\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": [
  ]
}