Back to Collection Items
var
http: TChilkatHttp;
success: Integer;
json: TChilkatJsonObject;
resp: IChilkatHttpResponse;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := TChilkatHttp.Create(Self);
// 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": [
// {
// "reasonForIssuance": "BAGGAGE",
// "subcode": "0C2",
// "airlineCode": "EY",
// "electronicMiscellaneousDocumentType": "FLIGHT_COUPON_ASSOCIATED",
// "basePrice": "528.00",
// "currencyCode": "USD",
// "groupCode": "BG",
// "flightIndices": [
// 1
// ]
// },
// {
// "reasonForIssuance": "BAGGAGE",
// "subcode": "0C4",
// "airlineCode": "EY",
// "electronicMiscellaneousDocumentType": "FLIGHT_COUPON_ASSOCIATED",
// "basePrice": "656.00",
// "currencyCode": "USD",
// "groupCode": "BG",
// "flightIndices": [
// 1
// ]
// }
// ]
// },
// {
// "givenName": "Mary",
// "surname": "Smith",
// "birthDate": "1970-01-23",
// "passengerCode": "ADT"
// }
// ],
// "contactInfo": {
// "emails": [
// "travel@sabre.com",
// "travel2@sabre.com"
// ],
// "phones": [
// "+123456"
// ]
// },
// "flightDetails": {
// "flights": [
// {
// "flightNumber": 78,
// "airlineCode": "EY",
// "fromAirportCode": "AMS",
// "toAirportCode": "AUH",
// "departureDate": "2021-11-19",
// "departureTime": "20:25",
// "bookingClass": "V",
// "flightStatusCode": "NN"
// },
// {
// "flightNumber": 77,
// "airlineCode": "EY",
// "fromAirportCode": "AUH",
// "toAirportCode": "AMS",
// "departureDate": "2021-11-26",
// "departureTime": "09:00",
// "bookingClass": "V",
// "flightStatusCode": "NN"
// }
// ],
// "flightPricing": [
// {}
// ]
// },
// "payment": {
// "billingAddress": {
// "name": "John Smith",
// "street": "1230 Ellen Ave, apt 10",
// "city": "Dallas",
// "stateProvince": "TX",
// "postalCode": "75063",
// "countryCode": "US"
// }
// }
// }
json := TChilkatJsonObject.Create(Self);
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' + #10 + '1230 Ellen Ave, apt 10' + #10 + 'Dallas, TX 75063' + #10 + 'US');
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].reasonForIssuance','BAGGAGE');
json.UpdateString('travelers[0].ancillaries[0].subcode','0C2');
json.UpdateString('travelers[0].ancillaries[0].airlineCode','EY');
json.UpdateString('travelers[0].ancillaries[0].electronicMiscellaneousDocumentType','FLIGHT_COUPON_ASSOCIATED');
json.UpdateString('travelers[0].ancillaries[0].basePrice','528.00');
json.UpdateString('travelers[0].ancillaries[0].currencyCode','USD');
json.UpdateString('travelers[0].ancillaries[0].groupCode','BG');
json.UpdateInt('travelers[0].ancillaries[0].flightIndices[0]',1);
json.UpdateString('travelers[0].ancillaries[1].reasonForIssuance','BAGGAGE');
json.UpdateString('travelers[0].ancillaries[1].subcode','0C4');
json.UpdateString('travelers[0].ancillaries[1].airlineCode','EY');
json.UpdateString('travelers[0].ancillaries[1].electronicMiscellaneousDocumentType','FLIGHT_COUPON_ASSOCIATED');
json.UpdateString('travelers[0].ancillaries[1].basePrice','656.00');
json.UpdateString('travelers[0].ancillaries[1].currencyCode','USD');
json.UpdateString('travelers[0].ancillaries[1].groupCode','BG');
json.UpdateInt('travelers[0].ancillaries[1].flightIndices[0]',1);
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',78);
json.UpdateString('flightDetails.flights[0].airlineCode','EY');
json.UpdateString('flightDetails.flights[0].fromAirportCode','AMS');
json.UpdateString('flightDetails.flights[0].toAirportCode','AUH');
json.UpdateString('flightDetails.flights[0].departureDate','2021-11-19');
json.UpdateString('flightDetails.flights[0].departureTime','20:25');
json.UpdateString('flightDetails.flights[0].bookingClass','V');
json.UpdateString('flightDetails.flights[0].flightStatusCode','NN');
json.UpdateInt('flightDetails.flights[1].flightNumber',77);
json.UpdateString('flightDetails.flights[1].airlineCode','EY');
json.UpdateString('flightDetails.flights[1].fromAirportCode','AUH');
json.UpdateString('flightDetails.flights[1].toAirportCode','AMS');
json.UpdateString('flightDetails.flights[1].departureDate','2021-11-26');
json.UpdateString('flightDetails.flights[1].departureTime','09:00');
json.UpdateString('flightDetails.flights[1].bookingClass','V');
json.UpdateString('flightDetails.flights[1].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.AuthToken := '<access_token>';
http.SetRequestHeader('X-Sabre-Current-City','G7RE');
resp := http.PostJson3('https://domain.com/','application/json',json.ControlInterface);
if (http.LastMethodSuccess = 0) then
begin
Memo1.Lines.Add(http.LastErrorText);
Exit;
end;
Memo1.Lines.Add(IntToStr(resp.StatusCode));
Memo1.Lines.Add(resp.BodyStr);
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": [
{
"reasonForIssuance": "BAGGAGE",
"subcode": "0C2",
"airlineCode": "EY",
"electronicMiscellaneousDocumentType": "FLIGHT_COUPON_ASSOCIATED",
"basePrice": "528.00",
"currencyCode": "USD",
"groupCode": "BG",
"flightIndices": [
1
]
},
{
"reasonForIssuance": "BAGGAGE",
"subcode": "0C4",
"airlineCode": "EY",
"electronicMiscellaneousDocumentType": "FLIGHT_COUPON_ASSOCIATED",
"basePrice": "656.00",
"currencyCode": "USD",
"groupCode": "BG",
"flightIndices": [
1
]
}
]
},
{
"givenName": "Mary",
"surname": "Smith",
"birthDate": "1970-01-23",
"passengerCode": "ADT"
}
],
"contactInfo": {
"emails": [
"travel@sabre.com",
"travel2@sabre.com"
],
"phones": [
"+123456"
]
},
"flightDetails": {
"flights": [
{
"flightNumber": 78,
"airlineCode": "EY",
"fromAirportCode": "AMS",
"toAirportCode": "AUH",
"departureDate": "2021-11-19",
"departureTime": "20:25",
"bookingClass": "V",
"flightStatusCode": "NN"
},
{
"flightNumber": 77,
"airlineCode": "EY",
"fromAirportCode": "AUH",
"toAirportCode": "AMS",
"departureDate": "2021-11-26",
"departureTime": "09:00",
"bookingClass": "V",
"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",
"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 \"reasonForIssuance\": \"BAGGAGE\",\n \"subcode\": \"0C2\",\n \"airlineCode\": \"EY\",\n \"electronicMiscellaneousDocumentType\": \"FLIGHT_COUPON_ASSOCIATED\",\n \"basePrice\": \"528.00\",\n \"currencyCode\": \"USD\",\n \"groupCode\": \"BG\",\n \"flightIndices\": [\n 1\n ]\n },\n {\n \"reasonForIssuance\": \"BAGGAGE\",\n \"subcode\": \"0C4\",\n \"airlineCode\": \"EY\",\n \"electronicMiscellaneousDocumentType\": \"FLIGHT_COUPON_ASSOCIATED\",\n \"basePrice\": \"656.00\",\n \"currencyCode\": \"USD\",\n \"groupCode\": \"BG\",\n \"flightIndices\": [\n 1\n ]\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\": 78,\n \"airlineCode\": \"EY\",\n \"fromAirportCode\": \"AMS\",\n \"toAirportCode\": \"AUH\",\n \"departureDate\": \"2021-11-19\",\n \"departureTime\": \"20:25\",\n \"bookingClass\": \"V\",\n \"flightStatusCode\": \"NN\"\n },\n {\n \"flightNumber\": 77,\n \"airlineCode\": \"EY\",\n \"fromAirportCode\": \"AUH\",\n \"toAirportCode\": \"AMS\",\n \"departureDate\": \"2021-11-26\",\n \"departureTime\": \"09:00\",\n \"bookingClass\": \"V\",\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": [
]
}