Chilkat Online Tools

Objective-C / Booking Management API v2021.12 / createBooking - CSL hotel with payment card

Back to Collection Items

#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>

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

CkoHttp *http = [[CkoHttp alloc] init];
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": "Kowalski",
//       "passengerCode": "ADT"
//     },
//     {
//       "givenName": "Mary",
//       "surname": "Kowalski",
//       "passengerCode": "ADT"
//     },
//     {
//       "givenName": "Ann",
//       "surname": "Kowalski",
//       "passengerCode": "INS",
//       "age": 3
//     }
//   ],
//   "contactInfo": {
//     "emails": [
//       "travel@sabre.com",
//       "travel2@sabre.com"
//     ],
//     "phones": [
//       "+123456"
//     ]
//   },
//   "hotel": {
//     "useCsl": true,
//     "bookingKey": "{{bookingKey}}",
//     "corporateDiscountCode": 6878700,
//     "rooms": [
//       {
//         "isSmoking": true,
//         "bedTypeCode": 3,
//         "physicalDisabilityCode": 3,
//         "travelerIndices": [
//           1,
//           2,
//           3
//         ]
//       }
//     ],
//     "specialInstruction": "Need a wi-fi in the room.",
//     "paymentPolicy": "DEPOSIT",
//     "formOfPayment": 1
//   },
//   "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"
//           }
//         }
//       },
//       {
//         "type": "VIRTUAL_CARD",
//         "virtualCard": {
//           "customerAccountCode": "John",
//           "agencyEmail": "john@smith.family.priv",
//           "hotelFax": "john@smith.family.priv",
//           "hotelName": "Ilia Hotel and Luxury Suites",
//           "roomType": "2 double beds",
//           "roomDescription": "Deluxe Room, 2 Double Beds",
//           "rateAmount": {
//             "amount": "100.00",
//             "currencyCode": "USD"
//           },
//           "virtualCardCharges": [
//             "Breakfast"
//           ]
//         }
//       },
//       {
//         "type": "AGENCY_NAME",
//         "agencyAddress": {
//           "name": "John Smith",
//           "street": "1230 Ellen Ave, apt 10",
//           "city": "Dallas",
//           "stateProvince": "TX",
//           "postalCode": "75063",
//           "countryCode": "US"
//         }
//       },
//       {
//         "type": "AGENCY_IATA",
//         "agencyIataNumber": "129345738"
//       },
//       {
//         "type": "CORPORATE",
//         "corporateId": "CC006"
//       },
//       {
//         "type": "COMPANY_NAME",
//         "companyAddress": {
//           "name": "John Smith",
//           "street": "1230 Ellen Ave, apt 10",
//           "city": "Dallas",
//           "stateProvince": "TX",
//           "postalCode": "75063",
//           "countryCode": "US"
//         }
//       }
//     ]
//   }
// }

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"agency.address.name" value: @"John Smith"];
[json UpdateString: @"agency.address.street" value: @"1230 Ellen Ave, apt 10"];
[json UpdateString: @"agency.address.city" value: @"Dallas"];
[json UpdateString: @"agency.address.stateProvince" value: @"TX"];
[json UpdateString: @"agency.address.postalCode" value: @"75063"];
[json UpdateString: @"agency.address.countryCode" value: @"US"];
[json UpdateString: @"agency.address.freeText" value: @"John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS"];
[json UpdateString: @"agency.agencyCustomerNumber" value: @"1234567"];
[json UpdateString: @"agency.ticketingPolicy" value: @"TODAY"];
[json UpdateString: @"travelers[0].givenName" value: @"John"];
[json UpdateString: @"travelers[0].surname" value: @"Kowalski"];
[json UpdateString: @"travelers[0].passengerCode" value: @"ADT"];
[json UpdateString: @"travelers[1].givenName" value: @"Mary"];
[json UpdateString: @"travelers[1].surname" value: @"Kowalski"];
[json UpdateString: @"travelers[1].passengerCode" value: @"ADT"];
[json UpdateString: @"travelers[2].givenName" value: @"Ann"];
[json UpdateString: @"travelers[2].surname" value: @"Kowalski"];
[json UpdateString: @"travelers[2].passengerCode" value: @"INS"];
[json UpdateInt: @"travelers[2].age" value: [NSNumber numberWithInt: 3]];
[json UpdateString: @"contactInfo.emails[0]" value: @"travel@sabre.com"];
[json UpdateString: @"contactInfo.emails[1]" value: @"travel2@sabre.com"];
[json UpdateString: @"contactInfo.phones[0]" value: @"+123456"];
[json UpdateBool: @"hotel.useCsl" value: YES];
[json UpdateString: @"hotel.bookingKey" value: @"{{bookingKey}}"];
[json UpdateInt: @"hotel.corporateDiscountCode" value: [NSNumber numberWithInt: 6878700]];
[json UpdateBool: @"hotel.rooms[0].isSmoking" value: YES];
[json UpdateInt: @"hotel.rooms[0].bedTypeCode" value: [NSNumber numberWithInt: 3]];
[json UpdateInt: @"hotel.rooms[0].physicalDisabilityCode" value: [NSNumber numberWithInt: 3]];
[json UpdateInt: @"hotel.rooms[0].travelerIndices[0]" value: [NSNumber numberWithInt: 1]];
[json UpdateInt: @"hotel.rooms[0].travelerIndices[1]" value: [NSNumber numberWithInt: 2]];
[json UpdateInt: @"hotel.rooms[0].travelerIndices[2]" value: [NSNumber numberWithInt: 3]];
[json UpdateString: @"hotel.specialInstruction" value: @"Need a wi-fi in the room."];
[json UpdateString: @"hotel.paymentPolicy" value: @"DEPOSIT"];
[json UpdateInt: @"hotel.formOfPayment" value: [NSNumber numberWithInt: 1]];
[json UpdateString: @"payment.formsOfPayment[0].type" value: @"PAYMENTCARD"];
[json UpdateString: @"payment.formsOfPayment[0].cardTypeCode" value: @"VI"];
[json UpdateString: @"payment.formsOfPayment[0].cardNumber" value: @"4487971000000006"];
[json UpdateString: @"payment.formsOfPayment[0].cardSecurityCode" value: @"123"];
[json UpdateString: @"payment.formsOfPayment[0].expiryDate" value: @"2022-10"];
[json UpdateString: @"payment.formsOfPayment[0].cardHolder.givenName" value: @"John"];
[json UpdateString: @"payment.formsOfPayment[0].cardHolder.surname" value: @"Smith"];
[json UpdateString: @"payment.formsOfPayment[0].cardHolder.email" value: @"john@smith.family.priv"];
[json UpdateString: @"payment.formsOfPayment[0].cardHolder.phone" value: @"+1-555-123-4567"];
[json UpdateString: @"payment.formsOfPayment[0].cardHolder.address.street" value: @"1230 Ellen Ave, apt 10"];
[json UpdateString: @"payment.formsOfPayment[0].cardHolder.address.city" value: @"Dallas"];
[json UpdateString: @"payment.formsOfPayment[0].cardHolder.address.stateProvince" value: @"TX"];
[json UpdateString: @"payment.formsOfPayment[0].cardHolder.address.postalCode" value: @"75063"];
[json UpdateString: @"payment.formsOfPayment[0].cardHolder.address.countryCode" value: @"US"];
[json UpdateString: @"payment.formsOfPayment[1].type" value: @"VIRTUAL_CARD"];
[json UpdateString: @"payment.formsOfPayment[1].virtualCard.customerAccountCode" value: @"John"];
[json UpdateString: @"payment.formsOfPayment[1].virtualCard.agencyEmail" value: @"john@smith.family.priv"];
[json UpdateString: @"payment.formsOfPayment[1].virtualCard.hotelFax" value: @"john@smith.family.priv"];
[json UpdateString: @"payment.formsOfPayment[1].virtualCard.hotelName" value: @"Ilia Hotel and Luxury Suites"];
[json UpdateString: @"payment.formsOfPayment[1].virtualCard.roomType" value: @"2 double beds"];
[json UpdateString: @"payment.formsOfPayment[1].virtualCard.roomDescription" value: @"Deluxe Room, 2 Double Beds"];
[json UpdateString: @"payment.formsOfPayment[1].virtualCard.rateAmount.amount" value: @"100.00"];
[json UpdateString: @"payment.formsOfPayment[1].virtualCard.rateAmount.currencyCode" value: @"USD"];
[json UpdateString: @"payment.formsOfPayment[1].virtualCard.virtualCardCharges[0]" value: @"Breakfast"];
[json UpdateString: @"payment.formsOfPayment[2].type" value: @"AGENCY_NAME"];
[json UpdateString: @"payment.formsOfPayment[2].agencyAddress.name" value: @"John Smith"];
[json UpdateString: @"payment.formsOfPayment[2].agencyAddress.street" value: @"1230 Ellen Ave, apt 10"];
[json UpdateString: @"payment.formsOfPayment[2].agencyAddress.city" value: @"Dallas"];
[json UpdateString: @"payment.formsOfPayment[2].agencyAddress.stateProvince" value: @"TX"];
[json UpdateString: @"payment.formsOfPayment[2].agencyAddress.postalCode" value: @"75063"];
[json UpdateString: @"payment.formsOfPayment[2].agencyAddress.countryCode" value: @"US"];
[json UpdateString: @"payment.formsOfPayment[3].type" value: @"AGENCY_IATA"];
[json UpdateString: @"payment.formsOfPayment[3].agencyIataNumber" value: @"129345738"];
[json UpdateString: @"payment.formsOfPayment[4].type" value: @"CORPORATE"];
[json UpdateString: @"payment.formsOfPayment[4].corporateId" value: @"CC006"];
[json UpdateString: @"payment.formsOfPayment[5].type" value: @"COMPANY_NAME"];
[json UpdateString: @"payment.formsOfPayment[5].companyAddress.name" value: @"John Smith"];
[json UpdateString: @"payment.formsOfPayment[5].companyAddress.street" value: @"1230 Ellen Ave, apt 10"];
[json UpdateString: @"payment.formsOfPayment[5].companyAddress.city" value: @"Dallas"];
[json UpdateString: @"payment.formsOfPayment[5].companyAddress.stateProvince" value: @"TX"];
[json UpdateString: @"payment.formsOfPayment[5].companyAddress.postalCode" value: @"75063"];
[json UpdateString: @"payment.formsOfPayment[5].companyAddress.countryCode" value: @"US"];

[http SetRequestHeader: @"accept" value: @"application/json"];
[http SetRequestHeader: @"x-request-id" value: @"dnjas82bd102bd912requestid"];
[http SetRequestHeader: @"X-Sabre-Group" value: @"G7RE"];
[http SetRequestHeader: @"X-Sabre-Current-City" value: @"G7RE"];
[http SetRequestHeader: @"ConversationId" value: @"dnjas82bd102bd912conversationid"];
[http SetRequestHeader: @"Content-Type" value: @"application/json"];
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";

CkoHttpResponse *resp = [http PostJson3: @"https://domain.com/" contentType: @"application/json" json: json];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",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"
	-H "x-request-id: dnjas82bd102bd912requestid"
	-H "ConversationId: dnjas82bd102bd912conversationid"
	-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",
      "passengerCode": "ADT"
    },
    {
      "givenName": "Mary",
      "surname": "Kowalski",
      "passengerCode": "ADT"
    },
    {
      "givenName": "Ann",
      "surname": "Kowalski",
      "passengerCode": "INS",
      "age": 3
    }
  ],
  "contactInfo": {
    "emails": [
      "travel@sabre.com",
      "travel2@sabre.com"
    ],
    "phones": [
      "+123456"
    ]
  },
  "hotel": {
    "useCsl": true,
    "bookingKey": "{{bookingKey}}",
    "corporateDiscountCode": 6878700,
    "rooms": [
      {
        "isSmoking": true,
        "bedTypeCode": 3,
        "physicalDisabilityCode": 3,
        "travelerIndices": [
          1,2,3
        ]
      }
    ],
    "specialInstruction": "Need a wi-fi in the room.",
    "paymentPolicy": "DEPOSIT",
    "formOfPayment": 1
  },
  "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"
          }
        }
      },
      {
        "type": "VIRTUAL_CARD",
        "virtualCard": {
          "customerAccountCode": "John",
          "agencyEmail": "john@smith.family.priv",
          "hotelFax": "john@smith.family.priv",
          "hotelName": "Ilia Hotel and Luxury Suites",
          "roomType": "2 double beds",
          "roomDescription": "Deluxe Room, 2 Double Beds",
          "rateAmount": {
            "amount": "100.00",
            "currencyCode": "USD"
          },
          "virtualCardCharges": [
            "Breakfast"
          ]
        }
      },
      {
        "type": "AGENCY_NAME",
        "agencyAddress": {
          "name": "John Smith",
          "street": "1230 Ellen Ave, apt 10",
          "city": "Dallas",
          "stateProvince": "TX",
          "postalCode": "75063",
          "countryCode": "US"
        }
      },
      {
        "type": "AGENCY_IATA",
        "agencyIataNumber": "129345738"
      },
      {
        "type": "CORPORATE",
        "corporateId": "CC006"
      },
      {
        "type": "COMPANY_NAME",
        "companyAddress": {
          "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 - CSL hotel with payment card",
  "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 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\": \"Kowalski\",\n      \"passengerCode\": \"ADT\"\n    },\n    {\n      \"givenName\": \"Mary\",\n      \"surname\": \"Kowalski\",\n      \"passengerCode\": \"ADT\"\n    },\n    {\n      \"givenName\": \"Ann\",\n      \"surname\": \"Kowalski\",\n      \"passengerCode\": \"INS\",\n      \"age\": 3\n    }\n  ],\n  \"contactInfo\": {\n    \"emails\": [\n      \"travel@sabre.com\",\n      \"travel2@sabre.com\"\n    ],\n    \"phones\": [\n      \"+123456\"\n    ]\n  },\n  \"hotel\": {\n    \"useCsl\": true,\n    \"bookingKey\": \"{{bookingKey}}\",\n    \"corporateDiscountCode\": 6878700,\n    \"rooms\": [\n      {\n        \"isSmoking\": true,\n        \"bedTypeCode\": 3,\n        \"physicalDisabilityCode\": 3,\n        \"travelerIndices\": [\n          1,2,3\n        ]\n      }\n    ],\n    \"specialInstruction\": \"Need a wi-fi in the room.\",\n    \"paymentPolicy\": \"DEPOSIT\",\n    \"formOfPayment\": 1\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        \"type\": \"VIRTUAL_CARD\",\n        \"virtualCard\": {\n          \"customerAccountCode\": \"John\",\n          \"agencyEmail\": \"john@smith.family.priv\",\n          \"hotelFax\": \"john@smith.family.priv\",\n          \"hotelName\": \"Ilia Hotel and Luxury Suites\",\n          \"roomType\": \"2 double beds\",\n          \"roomDescription\": \"Deluxe Room, 2 Double Beds\",\n          \"rateAmount\": {\n            \"amount\": \"100.00\",\n            \"currencyCode\": \"USD\"\n          },\n          \"virtualCardCharges\": [\n            \"Breakfast\"\n          ]\n        }\n      },\n      {\n        \"type\": \"AGENCY_NAME\",\n        \"agencyAddress\": {\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      {\n        \"type\": \"AGENCY_IATA\",\n        \"agencyIataNumber\": \"129345738\"\n      },\n      {\n        \"type\": \"CORPORATE\",\n        \"corporateId\": \"CC006\"\n      },\n      {\n        \"type\": \"COMPANY_NAME\",\n        \"companyAddress\": {\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    ]\n  }\n}"
    },
    "url": {
      "raw": "{{createBooking_endpoint}}",
      "host": [
        "{{createBooking_endpoint}}"
      ]
    },
    "description": "### <br>"
  },
  "response": [
  ]
}