Chilkat Online Tools

unicodeC / Booking Management API v2021.12 / 3. createBooking

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 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}}"
    //   },
    //   "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 = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"agency.address.name",L"John Smith");
    CkJsonObjectW_UpdateString(json,L"agency.address.street",L"1230 Ellen Ave, apt 11");
    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].passengerCode",L"ADT");
    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"car.bookingKey",L"{{carBookingKey}}");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].type",L"PAYMENTCARD");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardTypeCode",L"VI");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardNumber",L"4487971000000006");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardSecurityCode",L"123");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].expiryDate",L"2022-10");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardHolder.givenName",L"John");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardHolder.surname",L"Smith");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardHolder.email",L"john@smith.family.priv");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardHolder.phone",L"+1-555-123-4567");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardHolder.address.street",L"1230 Ellen Ave, apt 10");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardHolder.address.city",L"Dallas");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardHolder.address.stateProvince",L"TX");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardHolder.address.postalCode",L"75063");
    CkJsonObjectW_UpdateString(json,L"payment.formsOfPayment[0].cardHolder.address.countryCode",L"US");

    CkHttpW_SetRequestHeader(http,L"accept",L"application/json");
    CkHttpW_SetRequestHeader(http,L"x-request-id",L"dnjas82bd102bd912requestid");
    CkHttpW_SetRequestHeader(http,L"X-Sabre-Group",L"G7RE");
    CkHttpW_SetRequestHeader(http,L"X-Sabre-Current-City",L"G7RE");
    CkHttpW_SetRequestHeader(http,L"ConversationId",L"dnjas82bd102bd912conversationid");
    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 "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}}"
  },
  "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/v1/trip/orders/createBooking

Postman Collection Item JSON

{
  "name": "3. createBooking",
  "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  },\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": "{{rest_endpoint}}/v1/trip/orders/createBooking",
      "host": [
        "{{rest_endpoint}}"
      ],
      "path": [
        "v1",
        "trip",
        "orders",
        "createBooking"
      ]
    },
    "description": "### <br>"
  },
  "response": [
  ]
}