Chilkat Online Tools

phpExt / Booking Management API v2021.12 / createBooking - vehicle with Collection Site

Back to Collection Items

<?php

include("chilkat_9_5_0.php");

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

$http = new CkHttp();

// 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 11",
//       "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",
//       "passengerCode": "ADT"
//     }
//   ],
//   "contactInfo": {
//     "emails": [
//       "travel@sabre.com",
//       "travel2@sabre.com"
//     ],
//     "phones": [
//       "+123456"
//     ]
//   },
//   "car": {
//     "bookingKey": "{{carBookingKey}}",
//     "travelerIndex": 1,
//     "collectionAddress": {
//       "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"
//     },
//     "collectionSite": {
//       "id": "ABC123",
//       "name": "TEST LOCATION",
//       "phone": "8175551212"
//     },
//     "payment": {
//       "formsOfPayment": [
//         {
//           "type": "PAYMENTCARD",
//           "cardTypeCode": "VI",
//           "cardNumber": "4487971000000006",
//           "cardSecurityCode": "123",
//           "expiryDate": "2022-10",
//           "cardHolder": {
//             "givenName": "John",
//             "surname": "Smith",
//             "email": "john@smith.family.priv",
//             "phone": "+1-555-123-4567",
//             "address": {
//               "street": "1230 Ellen Ave, apt 10",
//               "city": "Dallas",
//               "stateProvince": "TX",
//               "postalCode": "75063",
//               "countryCode": "US"
//             }
//           }
//         }
//       ]
//     }
//   }
// }

$json = new CkJsonObject();
$json->UpdateString('agency.address.name','John Smith');
$json->UpdateString('agency.address.street','1230 Ellen Ave, apt 11');
$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','Kowalski');
$json->UpdateString('travelers[0].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->UpdateString('car.bookingKey','{{carBookingKey}}');
$json->UpdateInt('car.travelerIndex',1);
$json->UpdateString('car.collectionAddress.name','John Smith');
$json->UpdateString('car.collectionAddress.street','1230 Ellen Ave, apt 10');
$json->UpdateString('car.collectionAddress.city','Dallas');
$json->UpdateString('car.collectionAddress.stateProvince','TX');
$json->UpdateString('car.collectionAddress.postalCode','75063');
$json->UpdateString('car.collectionAddress.countryCode','US');
$json->UpdateString('car.collectionAddress.freeText','John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS');
$json->UpdateString('car.collectionSite.id','ABC123');
$json->UpdateString('car.collectionSite.name','TEST LOCATION');
$json->UpdateString('car.collectionSite.phone','8175551212');
$json->UpdateString('car.payment.formsOfPayment[0].type','PAYMENTCARD');
$json->UpdateString('car.payment.formsOfPayment[0].cardTypeCode','VI');
$json->UpdateString('car.payment.formsOfPayment[0].cardNumber','4487971000000006');
$json->UpdateString('car.payment.formsOfPayment[0].cardSecurityCode','123');
$json->UpdateString('car.payment.formsOfPayment[0].expiryDate','2022-10');
$json->UpdateString('car.payment.formsOfPayment[0].cardHolder.givenName','John');
$json->UpdateString('car.payment.formsOfPayment[0].cardHolder.surname','Smith');
$json->UpdateString('car.payment.formsOfPayment[0].cardHolder.email','john@smith.family.priv');
$json->UpdateString('car.payment.formsOfPayment[0].cardHolder.phone','+1-555-123-4567');
$json->UpdateString('car.payment.formsOfPayment[0].cardHolder.address.street','1230 Ellen Ave, apt 10');
$json->UpdateString('car.payment.formsOfPayment[0].cardHolder.address.city','Dallas');
$json->UpdateString('car.payment.formsOfPayment[0].cardHolder.address.stateProvince','TX');
$json->UpdateString('car.payment.formsOfPayment[0].cardHolder.address.postalCode','75063');
$json->UpdateString('car.payment.formsOfPayment[0].cardHolder.address.countryCode','US');

$http->SetRequestHeader('accept','application/json');
$http->SetRequestHeader('x-request-id','dnjas82bd102bd912requestid');
$http->SetRequestHeader('X-Sabre-Group','G7RE');
$http->SetRequestHeader('X-Sabre-Current-City','G7RE');
$http->SetRequestHeader('ConversationId','dnjas82bd102bd912conversationid');
$http->SetRequestHeader('Content-Type','application/json');
// Adds the "Authorization: Bearer <access_token>" header.
$http->put_AuthToken('<access_token>');

// resp is a CkHttpResponse
$resp = $http->PostJson3('https://domain.com/','application/json',$json);
if ($http->get_LastMethodSuccess() == false) {
    print $http->lastErrorText() . "\n";
    exit;
}

print $resp->get_StatusCode() . "\n";
print $resp->bodyStr() . "\n";


?>

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"
	-H "x-request-id: dnjas82bd102bd912requestid"
	-H "ConversationId: dnjas82bd102bd912conversationid"
	-d '{
    "agency": {
        "address": {
            "name": "John Smith",
            "street": "1230 Ellen Ave, apt 11",
            "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",
            "passengerCode": "ADT"
        }
    ],
    "contactInfo": {
        "emails": [
            "travel@sabre.com",
            "travel2@sabre.com"
        ],
        "phones": [
            "+123456"
        ]
    },
    "car": {
        "bookingKey": "{{carBookingKey}}",
        "travelerIndex": 1,
        "collectionAddress": {
            "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"
        },
        "collectionSite": {
            "id": "ABC123",
            "name": "TEST LOCATION",
            "phone": "8175551212"
        },
        "payment": {
            "formsOfPayment": [
                {
                    "type": "PAYMENTCARD",
                    "cardTypeCode": "VI",
                    "cardNumber": "4487971000000006",
                    "cardSecurityCode": "123",
                    "expiryDate": "2022-10",
                    "cardHolder": {
                        "givenName": "John",
                        "surname": "Smith",
                        "email": "john@smith.family.priv",
                        "phone": "+1-555-123-4567",
                        "address": {
                            "street": "1230 Ellen Ave, apt 10",
                            "city": "Dallas",
                            "stateProvince": "TX",
                            "postalCode": "75063",
                            "countryCode": "US"
                        }
                    }
                }
            ]
        }
    }'
https://domain.com/

Postman Collection Item JSON

{
  "name": "createBooking - vehicle with Collection Site",
  "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",
          "});\r",
          "\r",
          "pm.test(\"passed and returned values of x-request-id and ConversationId must be equal\", function () {\r",
          "    pm.expect(pm.response.headers.get('x-request-id')).to.eql('dnjas82bd102bd912requestid');\r",
          "    pm.expect(pm.response.headers.get('ConversationId')).to.eql('dnjas82bd102bd912conversationid');\r",
          "\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"
      },
      {
        "key": "x-request-id",
        "value": "dnjas82bd102bd912requestid",
        "type": "text"
      },
      {
        "key": "ConversationId",
        "value": "dnjas82bd102bd912conversationid",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"agency\": {\n        \"address\": {\n            \"name\": \"John Smith\",\n            \"street\": \"1230 Ellen Ave, apt 11\",\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\": \"Kowalski\",\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    \"car\": {\n        \"bookingKey\": \"{{carBookingKey}}\",\n        \"travelerIndex\": 1,\n        \"collectionAddress\": {\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        \"collectionSite\": {\n            \"id\": \"ABC123\",\n            \"name\": \"TEST LOCATION\",\n            \"phone\": \"8175551212\"\n        },\n        \"payment\": {\n            \"formsOfPayment\": [\n                {\n                    \"type\": \"PAYMENTCARD\",\n                    \"cardTypeCode\": \"VI\",\n                    \"cardNumber\": \"4487971000000006\",\n                    \"cardSecurityCode\": \"123\",\n                    \"expiryDate\": \"2022-10\",\n                    \"cardHolder\": {\n                        \"givenName\": \"John\",\n                        \"surname\": \"Smith\",\n                        \"email\": \"john@smith.family.priv\",\n                        \"phone\": \"+1-555-123-4567\",\n                        \"address\": {\n                            \"street\": \"1230 Ellen Ave, apt 10\",\n                            \"city\": \"Dallas\",\n                            \"stateProvince\": \"TX\",\n                            \"postalCode\": \"75063\",\n                            \"countryCode\": \"US\"\n                        }\n                    }\n                }\n            ]\n        }\n    }"
    },
    "url": {
      "raw": "{{createBooking_endpoint}}",
      "host": [
        "{{createBooking_endpoint}}"
      ]
    },
    "description": "### <br>"
  },
  "response": [
  ]
}