Chilkat Online Tools

Unicode C++ / Booking Management API v2021.12 / createBooking - Air with pricing and FOP

Back to Collection Items

void ChilkatSample(void)
    {
    json.UpdateString(L"agency.address.name",L"John Smith");    json.UpdateString(L"agency.address.street",L"1230 Ellen Ave, apt 10");    json.UpdateString(L"agency.address.city",L"Dallas");    json.UpdateString(L"agency.address.stateProvince",L"TX");    json.UpdateString(L"agency.address.postalCode",L"75063");    json.UpdateString(L"agency.address.countryCode",L"US");    json.UpdateString(L"agency.address.freeText",L"John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS");    json.UpdateString(L"agency.agencyCustomerNumber",L"1234567");    json.UpdateString(L"travelers[0].givenName",L"John");    json.UpdateString(L"travelers[0].surname",L"Kowalski");    json.UpdateString(L"travelers[0].birthDate",L"1970-01-23");    json.UpdateString(L"travelers[0].passengerCode",L"ADT");    json.UpdateString(L"travelers[1].givenName",L"Infant");    json.UpdateString(L"travelers[1].surname",L"Mrozicki");    json.UpdateString(L"travelers[1].birthDate",L"2020-01-23");    json.UpdateString(L"travelers[1].passengerCode",L"INF");    json.UpdateString(L"travelers[2].givenName",L"All");    json.UpdateString(L"travelers[2].surname",L"Mrozicki");    json.UpdateString(L"travelers[2].birthDate",L"2000-01-23");    json.UpdateString(L"travelers[2].passengerCode",L"ADT");    json.UpdateString(L"contactInfo.emails[0]",L"travel@sabre.com");    json.UpdateString(L"contactInfo.emails[1]",L"travel2@sabre.com");    json.UpdateString(L"contactInfo.phones[0]",L"+123456");    json.UpdateInt(L"flightDetails.flights[0].flightNumber",463);    json.UpdateString(L"flightDetails.flights[0].airlineCode",L"EY");    json.UpdateString(L"flightDetails.flights[0].fromAirportCode",L"MEL");    json.UpdateString(L"flightDetails.flights[0].toAirportCode",L"AUH");    json.UpdateString(L"flightDetails.flights[0].departureDate",L"{{start_date}}");    json.UpdateString(L"flightDetails.flights[0].departureTime",L"16:55");    json.UpdateString(L"flightDetails.flights[0].bookingClass",L"Y");    json.UpdateBool(L"flightDetails.flights[0].marriageGroup",false);    json.UpdateString(L"flightDetails.flights[0].flightStatusCode",L"NN");    json.UpdateInt(L"flightDetails.flights[1].flightNumber",462);    json.UpdateString(L"flightDetails.flights[1].airlineCode",L"EY");    json.UpdateString(L"flightDetails.flights[1].fromAirportCode",L"AUH");    json.UpdateString(L"flightDetails.flights[1].toAirportCode",L"MEL");    json.UpdateString(L"flightDetails.flights[1].departureDate",L"{{end_date}}");    json.UpdateString(L"flightDetails.flights[1].departureTime",L"09:00");    json.UpdateString(L"flightDetails.flights[1].bookingClass",L"Y");    json.UpdateBool(L"flightDetails.flights[1].marriageGroup",false);    json.UpdateString(L"flightDetails.flights[1].flightStatusCode",L"NN");    json.UpdateInt(L"flightDetails.flightPricing[0].qualifiers.payment.primaryFormOfPayment",1);    json.UpdateString(L"payment.billingAddress.name",L"John Smith");    json.UpdateString(L"payment.billingAddress.street",L"1230 Ellen Ave, apt 10");    json.UpdateString(L"payment.billingAddress.city",L"Dallas");    json.UpdateString(L"payment.billingAddress.stateProvince",L"TX");    json.UpdateString(L"payment.billingAddress.postalCode",L"75063");    json.UpdateString(L"payment.billingAddress.countryCode",L"US");    json.UpdateString(L"payment.formsOfPayment[0].type",L"PAYMENTCARD");    json.UpdateString(L"payment.formsOfPayment[0].cardTypeCode",L"VI");    json.UpdateString(L"payment.formsOfPayment[0].cardNumber",L"4005111111111136");    json.UpdateString(L"payment.formsOfPayment[0].expiryDate",L"2024-07");    http.put_AuthToken(L"<access_token>");
    }

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"
  	},
	"travelers": [
		{
			"givenName": "John",
			"surname": "Kowalski",
			"birthDate": "1970-01-23",
			"passengerCode": "ADT"
		},
                {
			"givenName": "Infant",
			"surname": "Mrozicki",
			"birthDate": "2020-01-23",
			"passengerCode": "INF"
		},
        {
			"givenName": "All",
			"surname": "Mrozicki",
			"birthDate": "2000-01-23",
			"passengerCode": "ADT"
		}
	],
	"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": {
                "payment": {
                    "primaryFormOfPayment": 1
                }
            }
        }
    ]
	},
    "payment": {
        "billingAddress": {
        "name": "John Smith",
        "street": "1230 Ellen Ave, apt 10",
        "city": "Dallas",
        "stateProvince": "TX",
        "postalCode": "75063",
        "countryCode": "US"
        },
        "formsOfPayment": [
            {
                "type": "PAYMENTCARD",
                "cardTypeCode": "VI",
                "cardNumber": "4005111111111136",
                "expiryDate": "2024-07"
            }
        ]
  } 
}'
https://domain.com/v1/trip/orders/createBooking

Postman Collection Item JSON

{
  "name": "createBooking - Air with pricing and FOP",
  "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},\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\": \"Infant\",\n\t\t\t\"surname\": \"Mrozicki\",\n\t\t\t\"birthDate\": \"2020-01-23\",\n\t\t\t\"passengerCode\": \"INF\"\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\": 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                \"payment\": {\n                    \"primaryFormOfPayment\": 1\n                }\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        \"formsOfPayment\": [\n            {\n                \"type\": \"PAYMENTCARD\",\n                \"cardTypeCode\": \"VI\",\n                \"cardNumber\": \"4005111111111136\",\n                \"expiryDate\": \"2024-07\"\n            }\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": [
  ]
}