Chilkat Online Tools

Swift3 / Booking Management API v2021.12 / createBooking - vehicle with Delivery Address

Back to Collection Items

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

    let http = CkoHttp()!
    var success: Bool

    // 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,
    //     "deliveryAddress": {
    //       "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"
    //     },
    //     "paymentPolicy": "DEPOSIT",
    //     "formOfPayment": 1,
    //     "quantity": 1,
    //     "specialInstructions": "Wants a blue car."
    //   },
    //   "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"
    //           }
    //         }
    //       }
    //     ]
    //   }
    // }

    let json = CkoJsonObject()!
    json.update("agency.address.name", value: "John Smith")
    json.update("agency.address.street", value: "1230 Ellen Ave, apt 11")
    json.update("agency.address.city", value: "Dallas")
    json.update("agency.address.stateProvince", value: "TX")
    json.update("agency.address.postalCode", value: "75063")
    json.update("agency.address.countryCode", value: "US")
    json.update("agency.address.freeText", value: "John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS")
    json.update("agency.agencyCustomerNumber", value: "1234567")
    json.update("agency.ticketingPolicy", value: "TODAY")
    json.update("travelers[0].givenName", value: "John")
    json.update("travelers[0].surname", value: "Kowalski")
    json.update("travelers[0].passengerCode", value: "ADT")
    json.update("contactInfo.emails[0]", value: "travel@sabre.com")
    json.update("contactInfo.emails[1]", value: "travel2@sabre.com")
    json.update("contactInfo.phones[0]", value: "+123456")
    json.update("car.bookingKey", value: "{{carBookingKey}}")
    json.updateInt("car.travelerIndex", value: 1)
    json.update("car.deliveryAddress.name", value: "John Smith")
    json.update("car.deliveryAddress.street", value: "1230 Ellen Ave apt 10")
    json.update("car.deliveryAddress.city", value: "Dallas")
    json.update("car.deliveryAddress.stateProvince", value: "TX")
    json.update("car.deliveryAddress.postalCode", value: "75063")
    json.update("car.deliveryAddress.countryCode", value: "US")
    json.update("car.deliveryAddress.freeText", value: "John Smith\n1230 Ellen Ave, apt 10\nDallas, TX 75063\nUS")
    json.update("car.paymentPolicy", value: "DEPOSIT")
    json.updateInt("car.formOfPayment", value: 1)
    json.updateInt("car.quantity", value: 1)
    json.update("car.specialInstructions", value: "Wants a blue car.")
    json.update("payment.formsOfPayment[0].type", value: "PAYMENTCARD")
    json.update("payment.formsOfPayment[0].cardTypeCode", value: "VI")
    json.update("payment.formsOfPayment[0].cardNumber", value: "4487971000000006")
    json.update("payment.formsOfPayment[0].cardSecurityCode", value: "123")
    json.update("payment.formsOfPayment[0].expiryDate", value: "2022-10")
    json.update("payment.formsOfPayment[0].cardHolder.givenName", value: "John")
    json.update("payment.formsOfPayment[0].cardHolder.surname", value: "Smith")
    json.update("payment.formsOfPayment[0].cardHolder.email", value: "john@smith.family.priv")
    json.update("payment.formsOfPayment[0].cardHolder.phone", value: "+1-555-123-4567")
    json.update("payment.formsOfPayment[0].cardHolder.address.street", value: "1230 Ellen Ave, apt 10")
    json.update("payment.formsOfPayment[0].cardHolder.address.city", value: "Dallas")
    json.update("payment.formsOfPayment[0].cardHolder.address.stateProvince", value: "TX")
    json.update("payment.formsOfPayment[0].cardHolder.address.postalCode", value: "75063")
    json.update("payment.formsOfPayment[0].cardHolder.address.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>"

    var resp: CkoHttpResponse? = http.postJson3("https://domain.com/", contentType: "application/json", json: json)
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("\(resp!.statusCode.intValue)")
    print("\(resp!.bodyStr!)")
    resp = nil

}

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,
        "deliveryAddress": {
            "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"
        },
        "paymentPolicy": "DEPOSIT",
        "formOfPayment": 1,
        "quantity": 1,
        "specialInstructions": "Wants a blue car."
    },
    "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 Delivery Address",
  "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        \"deliveryAddress\": {\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        \"paymentPolicy\": \"DEPOSIT\",\n        \"formOfPayment\": 1,\n        \"quantity\": 1,\n        \"specialInstructions\": \"Wants a blue car.\"\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": [
  ]
}