Chilkat Online Tools

Objective-C / Booking Management API v2021.12 / createBooking - Air with remarks and other services

Back to Collection Items

#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>

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

CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;

// 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": 463,
//         "airlineCode": "EY",
//         "fromAirportCode": "MEL",
//         "toAirportCode": "AUH",
//         "departureDate": "{{start_date}}",
//         "departureTime": "16:15",
//         "bookingClass": "Y",
//         "marriageGroup": false,
//         "flightStatusCode": "NN"
//       },
//       {
//         "flightNumber": 460,
//         "airlineCode": "EY",
//         "fromAirportCode": "AUH",
//         "toAirportCode": "MEL",
//         "departureDate": "{{end_date}}",
//         "departureTime": "21:45",
//         "bookingClass": "Y",
//         "marriageGroup": false,
//         "flightStatusCode": "NN"
//       }
//     ],
//     "flightPricing": [
//       {
//         "qualifiers": {
//           "validatingAirlineCode": "EY"
//         }
//       }
//     ]
//   },
//   "remarks": [
//     {
//       "type": "GENERAL",
//       "text": "TEST REMARK"
//     }
//   ],
//   "otherServices": [
//     {
//       "airlineCode": "EY",
//       "travelerIndex": 1,
//       "serviceMessage": "TEST OTHER SERVICE"
//     }
//   ]
// }

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"agency.address.name" value: @"John Smith"];
[json UpdateString: @"agency.address.street" value: @"1230 Ellen Ave, apt 10"];
[json UpdateString: @"agency.address.city" value: @"Dallas"];
[json UpdateString: @"agency.address.stateProvince" value: @"TX"];
[json UpdateString: @"agency.address.postalCode" value: @"75063"];
[json UpdateString: @"agency.address.countryCode" value: @"US"];
[json UpdateString: @"agency.address.freeText" value: @"John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS"];
[json UpdateString: @"agency.agencyCustomerNumber" value: @"1234567"];
[json UpdateString: @"agency.ticketingPolicy" value: @"TODAY"];
[json UpdateString: @"travelers[0].givenName" value: @"John"];
[json UpdateString: @"travelers[0].surname" value: @"Smith"];
[json UpdateString: @"travelers[0].birthDate" value: @"1970-01-23"];
[json UpdateString: @"travelers[0].passengerCode" value: @"ADT"];
[json UpdateString: @"travelers[0].identityDocuments[0].documentNumber" value: @"0123456789"];
[json UpdateString: @"travelers[0].identityDocuments[0].documentType" value: @"PASSPORT"];
[json UpdateString: @"travelers[0].identityDocuments[0].expiryDate" value: @"2024-07-09"];
[json UpdateString: @"travelers[0].identityDocuments[0].issuingCountryCode" value: @"US"];
[json UpdateString: @"travelers[0].identityDocuments[0].residenceCountryCode" value: @"US"];
[json UpdateString: @"travelers[0].identityDocuments[0].givenName" value: @"John"];
[json UpdateString: @"travelers[0].identityDocuments[0].middleName" value: @"Jack"];
[json UpdateString: @"travelers[0].identityDocuments[0].surname" value: @"Smith"];
[json UpdateString: @"travelers[0].identityDocuments[0].birthDate" value: @"1980-12-02"];
[json UpdateString: @"travelers[0].identityDocuments[0].gender" value: @"MALE"];
[json UpdateString: @"contactInfo.emails[0]" value: @"travel@sabre.com"];
[json UpdateString: @"contactInfo.emails[1]" value: @"travel2@sabre.com"];
[json UpdateString: @"contactInfo.phones[0]" value: @"+123456"];
[json UpdateInt: @"flightDetails.flights[0].flightNumber" value: [NSNumber numberWithInt: 463]];
[json UpdateString: @"flightDetails.flights[0].airlineCode" value: @"EY"];
[json UpdateString: @"flightDetails.flights[0].fromAirportCode" value: @"MEL"];
[json UpdateString: @"flightDetails.flights[0].toAirportCode" value: @"AUH"];
[json UpdateString: @"flightDetails.flights[0].departureDate" value: @"{{start_date}}"];
[json UpdateString: @"flightDetails.flights[0].departureTime" value: @"16:15"];
[json UpdateString: @"flightDetails.flights[0].bookingClass" value: @"Y"];
[json UpdateBool: @"flightDetails.flights[0].marriageGroup" value: NO];
[json UpdateString: @"flightDetails.flights[0].flightStatusCode" value: @"NN"];
[json UpdateInt: @"flightDetails.flights[1].flightNumber" value: [NSNumber numberWithInt: 460]];
[json UpdateString: @"flightDetails.flights[1].airlineCode" value: @"EY"];
[json UpdateString: @"flightDetails.flights[1].fromAirportCode" value: @"AUH"];
[json UpdateString: @"flightDetails.flights[1].toAirportCode" value: @"MEL"];
[json UpdateString: @"flightDetails.flights[1].departureDate" value: @"{{end_date}}"];
[json UpdateString: @"flightDetails.flights[1].departureTime" value: @"21:45"];
[json UpdateString: @"flightDetails.flights[1].bookingClass" value: @"Y"];
[json UpdateBool: @"flightDetails.flights[1].marriageGroup" value: NO];
[json UpdateString: @"flightDetails.flights[1].flightStatusCode" value: @"NN"];
[json UpdateString: @"flightDetails.flightPricing[0].qualifiers.validatingAirlineCode" value: @"EY"];
[json UpdateString: @"remarks[0].type" value: @"GENERAL"];
[json UpdateString: @"remarks[0].text" value: @"TEST REMARK"];
[json UpdateString: @"otherServices[0].airlineCode" value: @"EY"];
[json UpdateInt: @"otherServices[0].travelerIndex" value: [NSNumber numberWithInt: 1]];
[json UpdateString: @"otherServices[0].serviceMessage" value: @"TEST OTHER SERVICE"];

[http SetRequestHeader: @"Conversation-ID" value: @"{{conv_id}}"];
[http SetRequestHeader: @"Content-Type" value: @"application/json"];
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";

CkoHttpResponse *resp = [http PostJson3: @"https://domain.com/v1/trip/orders/createBooking" contentType: @"application/json" json: json];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",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": "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": 463,
                "airlineCode": "EY",
                "fromAirportCode": "MEL",
                "toAirportCode": "AUH",
                "departureDate": "{{start_date}}",
                "departureTime": "16:15",
                "bookingClass": "Y",
                "marriageGroup": false,
                "flightStatusCode": "NN"
            },
            {
                "flightNumber": 460,
                "airlineCode": "EY",
                "fromAirportCode": "AUH",
                "toAirportCode": "MEL",
                "departureDate": "{{end_date}}",
                "departureTime": "21:45",
                "bookingClass": "Y",
                "marriageGroup": false,
                "flightStatusCode": "NN"
            }
        ],
        "flightPricing": [
            {
                "qualifiers": {
                    "validatingAirlineCode": "EY"
                }
            }
        ]
    },
    "remarks": [
        {
            "type": "GENERAL",
            "text": "TEST REMARK"
        }
    ],
    "otherServices": [
        {
            "airlineCode": "EY",
            "travelerIndex": 1,
            "serviceMessage": "TEST OTHER SERVICE"
        }
    ]
}'
https://domain.com/v1/trip/orders/createBooking

Postman Collection Item JSON

{
  "name": "createBooking - Air with remarks and other services",
  "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    \"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            \"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        }\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\": 463,\n                \"airlineCode\": \"EY\",\n                \"fromAirportCode\": \"MEL\",\n                \"toAirportCode\": \"AUH\",\n                \"departureDate\": \"{{start_date}}\",\n                \"departureTime\": \"16:15\",\n                \"bookingClass\": \"Y\",\n                \"marriageGroup\": false,\n                \"flightStatusCode\": \"NN\"\n            },\n            {\n                \"flightNumber\": 460,\n                \"airlineCode\": \"EY\",\n                \"fromAirportCode\": \"AUH\",\n                \"toAirportCode\": \"MEL\",\n                \"departureDate\": \"{{end_date}}\",\n                \"departureTime\": \"21:45\",\n                \"bookingClass\": \"Y\",\n                \"marriageGroup\": false,\n                \"flightStatusCode\": \"NN\"\n            }\n        ],\n        \"flightPricing\": [\n            {\n                \"qualifiers\": {\n                    \"validatingAirlineCode\": \"EY\"\n                }\n            }\n        ]\n    },\n    \"remarks\": [\n        {\n            \"type\": \"GENERAL\",\n            \"text\": \"TEST REMARK\"\n        }\n    ],\n    \"otherServices\": [\n        {\n            \"airlineCode\": \"EY\",\n            \"travelerIndex\": 1,\n            \"serviceMessage\": \"TEST OTHER SERVICE\"\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": [
  ]
}