Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// 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": "Kowalski",
// "birthDate": "1970-01-23",
// "passengerCode": "ADT",
// "identityDocuments": [
// {
// "documentNumber": "0123456789",
// "documentType": "PASSPORT",
// "expiryDate": "2024-07-09",
// "issuingCountryCode": "US",
// "residenceCountryCode": "US",
// "givenName": "John",
// "middleName": "Jack",
// "surname": "Kowalski",
// "birthDate": "1980-12-02",
// "gender": "MALE"
// }
// ]
// },
// {
// "givenName": "All",
// "surname": "Kowalski",
// "birthDate": "2000-01-23",
// "passengerCode": "ADT",
// "identityDocuments": [
// {
// "documentNumber": "01234567890",
// "documentType": "PASSPORT",
// "expiryDate": "2024-07-09",
// "issuingCountryCode": "US",
// "residenceCountryCode": "US",
// "givenName": "All",
// "middleName": "Jack",
// "surname": "Kowalski",
// "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"
// }
// }
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"agency.address.name",L"John Smith");
CkJsonObjectW_UpdateString(json,L"agency.address.street",L"1230 Ellen Ave, apt 10");
CkJsonObjectW_UpdateString(json,L"agency.address.city",L"Dallas");
CkJsonObjectW_UpdateString(json,L"agency.address.stateProvince",L"TX");
CkJsonObjectW_UpdateString(json,L"agency.address.postalCode",L"75063");
CkJsonObjectW_UpdateString(json,L"agency.address.countryCode",L"US");
CkJsonObjectW_UpdateString(json,L"agency.address.freeText",L"John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS");
CkJsonObjectW_UpdateString(json,L"agency.agencyCustomerNumber",L"1234567");
CkJsonObjectW_UpdateString(json,L"agency.ticketingPolicy",L"TODAY");
CkJsonObjectW_UpdateString(json,L"travelers[0].givenName",L"John");
CkJsonObjectW_UpdateString(json,L"travelers[0].surname",L"Kowalski");
CkJsonObjectW_UpdateString(json,L"travelers[0].birthDate",L"1970-01-23");
CkJsonObjectW_UpdateString(json,L"travelers[0].passengerCode",L"ADT");
CkJsonObjectW_UpdateString(json,L"travelers[0].identityDocuments[0].documentNumber",L"0123456789");
CkJsonObjectW_UpdateString(json,L"travelers[0].identityDocuments[0].documentType",L"PASSPORT");
CkJsonObjectW_UpdateString(json,L"travelers[0].identityDocuments[0].expiryDate",L"2024-07-09");
CkJsonObjectW_UpdateString(json,L"travelers[0].identityDocuments[0].issuingCountryCode",L"US");
CkJsonObjectW_UpdateString(json,L"travelers[0].identityDocuments[0].residenceCountryCode",L"US");
CkJsonObjectW_UpdateString(json,L"travelers[0].identityDocuments[0].givenName",L"John");
CkJsonObjectW_UpdateString(json,L"travelers[0].identityDocuments[0].middleName",L"Jack");
CkJsonObjectW_UpdateString(json,L"travelers[0].identityDocuments[0].surname",L"Kowalski");
CkJsonObjectW_UpdateString(json,L"travelers[0].identityDocuments[0].birthDate",L"1980-12-02");
CkJsonObjectW_UpdateString(json,L"travelers[0].identityDocuments[0].gender",L"MALE");
CkJsonObjectW_UpdateString(json,L"travelers[1].givenName",L"All");
CkJsonObjectW_UpdateString(json,L"travelers[1].surname",L"Kowalski");
CkJsonObjectW_UpdateString(json,L"travelers[1].birthDate",L"2000-01-23");
CkJsonObjectW_UpdateString(json,L"travelers[1].passengerCode",L"ADT");
CkJsonObjectW_UpdateString(json,L"travelers[1].identityDocuments[0].documentNumber",L"01234567890");
CkJsonObjectW_UpdateString(json,L"travelers[1].identityDocuments[0].documentType",L"PASSPORT");
CkJsonObjectW_UpdateString(json,L"travelers[1].identityDocuments[0].expiryDate",L"2024-07-09");
CkJsonObjectW_UpdateString(json,L"travelers[1].identityDocuments[0].issuingCountryCode",L"US");
CkJsonObjectW_UpdateString(json,L"travelers[1].identityDocuments[0].residenceCountryCode",L"US");
CkJsonObjectW_UpdateString(json,L"travelers[1].identityDocuments[0].givenName",L"All");
CkJsonObjectW_UpdateString(json,L"travelers[1].identityDocuments[0].middleName",L"Jack");
CkJsonObjectW_UpdateString(json,L"travelers[1].identityDocuments[0].surname",L"Kowalski");
CkJsonObjectW_UpdateString(json,L"travelers[1].identityDocuments[0].birthDate",L"1980-12-02");
CkJsonObjectW_UpdateString(json,L"travelers[1].identityDocuments[0].gender",L"MALE");
CkJsonObjectW_UpdateString(json,L"contactInfo.emails[0]",L"travel@sabre.com");
CkJsonObjectW_UpdateString(json,L"contactInfo.emails[1]",L"travel2@sabre.com");
CkJsonObjectW_UpdateString(json,L"contactInfo.phones[0]",L"+123456");
CkJsonObjectW_UpdateString(json,L"flightDetails.flights[0].flightNumber",L"{{oFlightNumber}}");
CkJsonObjectW_UpdateString(json,L"flightDetails.flights[0].airlineCode",L"{{oMarketingAirline}}");
CkJsonObjectW_UpdateString(json,L"flightDetails.flights[0].fromAirportCode",L"{{oDepartureAirport}}");
CkJsonObjectW_UpdateString(json,L"flightDetails.flights[0].toAirportCode",L"{{oArrivalAirport}}");
CkJsonObjectW_UpdateString(json,L"flightDetails.flights[0].departureDate",L"{{start_date}}");
CkJsonObjectW_UpdateString(json,L"flightDetails.flights[0].departureTime",L"{{oDepartureTime}}");
CkJsonObjectW_UpdateString(json,L"flightDetails.flights[0].bookingClass",L"Y");
CkJsonObjectW_UpdateBool(json,L"flightDetails.flights[0].marriageGroup",FALSE);
CkJsonObjectW_UpdateString(json,L"flightDetails.flights[0].flightStatusCode",L"NN");
CkJsonObjectW_UpdateString(json,L"payment.billingAddress.name",L"John Smith");
CkJsonObjectW_UpdateString(json,L"payment.billingAddress.street",L"1230 Ellen Ave, apt 10");
CkJsonObjectW_UpdateString(json,L"payment.billingAddress.city",L"Dallas");
CkJsonObjectW_UpdateString(json,L"payment.billingAddress.stateProvince",L"TX");
CkJsonObjectW_UpdateString(json,L"payment.billingAddress.postalCode",L"75063");
CkJsonObjectW_UpdateString(json,L"payment.billingAddress.countryCode",L"US");
CkHttpW_SetRequestHeader(http,L"Conversation-ID",L"{{conv_id}}");
CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttpW_putAuthToken(http,L"<access_token>");
resp = CkHttpW_PostJson3(http,L"https://domain.com/v1/trip/orders/createBooking",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
}
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": "Kowalski",
"birthDate": "1970-01-23",
"passengerCode": "ADT",
"identityDocuments": [
{
"documentNumber": "0123456789",
"documentType": "PASSPORT",
"expiryDate": "2024-07-09",
"issuingCountryCode": "US",
"residenceCountryCode": "US",
"givenName": "John",
"middleName": "Jack",
"surname": "Kowalski",
"birthDate": "1980-12-02",
"gender": "MALE"
}
]
},
{
"givenName": "All",
"surname": "Kowalski",
"birthDate": "2000-01-23",
"passengerCode": "ADT",
"identityDocuments": [
{
"documentNumber": "01234567890",
"documentType": "PASSPORT",
"expiryDate": "2024-07-09",
"issuingCountryCode": "US",
"residenceCountryCode": "US",
"givenName": "All",
"middleName": "Jack",
"surname": "Kowalski",
"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",
"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\": \"Kowalski\",\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\": \"Kowalski\",\n \"birthDate\": \"1980-12-02\",\n \"gender\": \"MALE\"\n }\n ]\n\t\t},\n {\n\t\t\t\"givenName\": \"All\",\n\t\t\t\"surname\": \"Kowalski\",\n\t\t\t\"birthDate\": \"2000-01-23\",\n\t\t\t\"passengerCode\": \"ADT\",\n \"identityDocuments\": [\n {\n \"documentNumber\": \"01234567890\",\n \"documentType\": \"PASSPORT\",\n \"expiryDate\": \"2024-07-09\",\n \"issuingCountryCode\": \"US\",\n \"residenceCountryCode\": \"US\",\n \"givenName\": \"All\",\n \"middleName\": \"Jack\",\n \"surname\": \"Kowalski\",\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": [
]
}