Back to Collection Items
#include <CkHttp.h>
#include <CkJsonObject.h>
#include <CkHttpResponse.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
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",
// "ancillaries": [
// {
// "reasonForIssuanceCode": "C",
// "electronicMiscellaneousDocumentType": "FLIGHT_COUPON_ASSOCIATED",
// "reasonForIssuanceName": "BAGGAGE",
// "subcode": "0CC",
// "airlineCode": "LH",
// "groupCode": "BG",
// "basePrice": "35.00",
// "currencyCode": "USD",
// "flightIndices": [
// 1
// ]
// }
// ],
// "specialServices": [
// {
// "code": "FBAG"
// }
// ]
// },
// {
// "givenName": "Mary",
// "surname": "Smith",
// "birthDate": "1970-01-23",
// "passengerCode": "ADT"
// }
// ],
// "contactInfo": {
// "emails": [
// "travel@sabre.com",
// "travel2@sabre.com"
// ],
// "phones": [
// "+123456"
// ]
// },
// "flightDetails": {
// "flights": [
// {
// "flightNumber": 809,
// "airlineCode": "LH",
// "fromAirportCode": "ARN",
// "toAirportCode": "FRA",
// "departureDate": "2021-11-20",
// "departureTime": "06:15",
// "bookingClass": "Y",
// "flightStatusCode": "NN"
// }
// ],
// "flightPricing": [
// {}
// ]
// },
// "payment": {
// "billingAddress": {
// "name": "John Smith",
// "street": "1230 Ellen Ave, apt 10",
// "city": "Dallas",
// "stateProvince": "TX",
// "postalCode": "75063",
// "countryCode": "US"
// }
// }
// }
CkJsonObject json;
json.UpdateString("agency.address.name","John Smith");
json.UpdateString("agency.address.street","1230 Ellen Ave, apt 10");
json.UpdateString("agency.address.city","Dallas");
json.UpdateString("agency.address.stateProvince","TX");
json.UpdateString("agency.address.postalCode","75063");
json.UpdateString("agency.address.countryCode","US");
json.UpdateString("agency.address.freeText","John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS");
json.UpdateString("agency.agencyCustomerNumber","1234567");
json.UpdateString("agency.ticketingPolicy","TODAY");
json.UpdateString("travelers[0].givenName","John");
json.UpdateString("travelers[0].surname","Smith");
json.UpdateString("travelers[0].birthDate","1970-01-23");
json.UpdateString("travelers[0].passengerCode","ADT");
json.UpdateString("travelers[0].ancillaries[0].reasonForIssuanceCode","C");
json.UpdateString("travelers[0].ancillaries[0].electronicMiscellaneousDocumentType","FLIGHT_COUPON_ASSOCIATED");
json.UpdateString("travelers[0].ancillaries[0].reasonForIssuanceName","BAGGAGE");
json.UpdateString("travelers[0].ancillaries[0].subcode","0CC");
json.UpdateString("travelers[0].ancillaries[0].airlineCode","LH");
json.UpdateString("travelers[0].ancillaries[0].groupCode","BG");
json.UpdateString("travelers[0].ancillaries[0].basePrice","35.00");
json.UpdateString("travelers[0].ancillaries[0].currencyCode","USD");
json.UpdateInt("travelers[0].ancillaries[0].flightIndices[0]",1);
json.UpdateString("travelers[0].specialServices[0].code","FBAG");
json.UpdateString("travelers[1].givenName","Mary");
json.UpdateString("travelers[1].surname","Smith");
json.UpdateString("travelers[1].birthDate","1970-01-23");
json.UpdateString("travelers[1].passengerCode","ADT");
json.UpdateString("contactInfo.emails[0]","travel@sabre.com");
json.UpdateString("contactInfo.emails[1]","travel2@sabre.com");
json.UpdateString("contactInfo.phones[0]","+123456");
json.UpdateInt("flightDetails.flights[0].flightNumber",809);
json.UpdateString("flightDetails.flights[0].airlineCode","LH");
json.UpdateString("flightDetails.flights[0].fromAirportCode","ARN");
json.UpdateString("flightDetails.flights[0].toAirportCode","FRA");
json.UpdateString("flightDetails.flights[0].departureDate","2021-11-20");
json.UpdateString("flightDetails.flights[0].departureTime","06:15");
json.UpdateString("flightDetails.flights[0].bookingClass","Y");
json.UpdateString("flightDetails.flights[0].flightStatusCode","NN");
json.UpdateString("payment.billingAddress.name","John Smith");
json.UpdateString("payment.billingAddress.street","1230 Ellen Ave, apt 10");
json.UpdateString("payment.billingAddress.city","Dallas");
json.UpdateString("payment.billingAddress.stateProvince","TX");
json.UpdateString("payment.billingAddress.postalCode","75063");
json.UpdateString("payment.billingAddress.countryCode","US");
http.SetRequestHeader("accept","application/json");
http.SetRequestHeader("Content-Type","application/json");
http.SetRequestHeader("X-Sabre-Group","G7RE");
// Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>");
http.SetRequestHeader("X-Sabre-Current-City","G7RE");
CkHttpResponse *resp = http.PostJson3("https://domain.com/","application/json",json);
if (http.get_LastMethodSuccess() == false) {
std::cout << http.lastErrorText() << "\r\n";
return;
}
std::cout << resp->get_StatusCode() << "\r\n";
std::cout << resp->bodyStr() << "\r\n";
delete resp;
}
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "accept: application/json"
-H "Content-Type: application/json"
-H "X-Sabre-Group: G7RE"
-H "X-Sabre-Current-City: G7RE"
-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",
"ancillaries": [
{
"reasonForIssuanceCode": "C",
"electronicMiscellaneousDocumentType": "FLIGHT_COUPON_ASSOCIATED",
"reasonForIssuanceName": "BAGGAGE",
"subcode": "0CC",
"airlineCode": "LH",
"groupCode": "BG",
"basePrice": "35.00",
"currencyCode": "USD",
"flightIndices": [
1
]
}
],
"specialServices": [
{
"code": "FBAG"
}
]
},
{
"givenName": "Mary",
"surname": "Smith",
"birthDate": "1970-01-23",
"passengerCode": "ADT"
}
],
"contactInfo": {
"emails": [
"travel@sabre.com",
"travel2@sabre.com"
],
"phones": [
"+123456"
]
},
"flightDetails": {
"flights": [
{
"flightNumber": 809,
"airlineCode": "LH",
"fromAirportCode": "ARN",
"toAirportCode": "FRA",
"departureDate": "2021-11-20",
"departureTime": "06:15",
"bookingClass": "Y",
"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/
Postman Collection Item JSON
{
"name": "createBooking - Ancillaries baggage with SSR",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"response is ok\", function () {\r",
" pm.response.to.be.ok;\r",
" pm.response.to.have.status(200);\r",
"});\r",
"\r",
"pm.test(\"response must be valid and have a body\", function () {\r",
" // this assertion also checks if a body exists\r",
" pm.response.to.be.json; \r",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "accept",
"type": "text",
"value": "application/json"
},
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "X-Sabre-Group",
"value": "G7RE",
"type": "text"
},
{
"key": "X-Sabre-Current-City",
"value": "G7RE",
"type": "text"
}
],
"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 \"ancillaries\": [\n {\n \"reasonForIssuanceCode\": \"C\",\n \"electronicMiscellaneousDocumentType\": \"FLIGHT_COUPON_ASSOCIATED\",\n \"reasonForIssuanceName\": \"BAGGAGE\",\n \"subcode\": \"0CC\",\n \"airlineCode\": \"LH\",\n \"groupCode\": \"BG\",\n \"basePrice\": \"35.00\",\n \"currencyCode\": \"USD\",\n \"flightIndices\": [\n 1\n ]\n }\n ],\n \"specialServices\": [\n {\n \"code\": \"FBAG\"\n }\n ]\n },\n {\n \"givenName\": \"Mary\",\n \"surname\": \"Smith\",\n \"birthDate\": \"1970-01-23\",\n \"passengerCode\": \"ADT\"\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\": 809,\n \"airlineCode\": \"LH\",\n \"fromAirportCode\": \"ARN\",\n \"toAirportCode\": \"FRA\",\n \"departureDate\": \"2021-11-20\",\n \"departureTime\": \"06:15\",\n \"bookingClass\": \"Y\",\n \"flightStatusCode\": \"NN\"\n }\n ],\n \"flightPricing\": [\n {}\n ]\n },\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": "{{createBooking_endpoint}}",
"host": [
"{{createBooking_endpoint}}"
]
},
"description": "### <br>"
},
"response": [
]
}