Back to Collection Items
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = CreateObject("Chilkat.Http")
' Use this online tool to generate code from sample JSON: Generate Code to Create JSON
' The following JSON is sent in the request body.
' {
' "profiles": [
' {
' "uniqueId": "{{profileId}}",
' "profileTypeCode": "TVL",
' "domainId": "{{pcc}}"
' }
' ],
' "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"
' }
' },
' "hotel": {
' "bookingKey": "{{bookingKey}}",
' "rooms": [
' {
' "travelerIndices": [
' 1
' ]
' }
' ],
' "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"
' }
' }
' ]
' }
' }
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set json = CreateObject("Chilkat.JsonObject")
success = json.UpdateString("profiles[0].uniqueId","{{profileId}}")
success = json.UpdateString("profiles[0].profileTypeCode","TVL")
success = json.UpdateString("profiles[0].domainId","{{pcc}}")
success = json.UpdateString("agency.address.name","John Smith")
success = json.UpdateString("agency.address.street","1230 Ellen Ave, apt 10")
success = json.UpdateString("agency.address.city","Dallas")
success = json.UpdateString("agency.address.stateProvince","TX")
success = json.UpdateString("agency.address.postalCode","75063")
success = json.UpdateString("agency.address.countryCode","US")
success = json.UpdateString("agency.address.freeText","John Smith" & vbLf & "1230 Ellen Ave, apt 10" & vbLf & "Dallas, TX 75063" & vbLf & "US")
success = json.UpdateString("hotel.bookingKey","{{bookingKey}}")
success = json.UpdateInt("hotel.rooms[0].travelerIndices[0]",1)
success = json.UpdateString("hotel.paymentPolicy","DEPOSIT")
success = json.UpdateInt("hotel.formOfPayment",1)
success = json.UpdateString("payment.formsOfPayment[0].type","PAYMENTCARD")
success = json.UpdateString("payment.formsOfPayment[0].cardTypeCode","VI")
success = json.UpdateString("payment.formsOfPayment[0].cardNumber","4487971000000006")
success = json.UpdateString("payment.formsOfPayment[0].cardSecurityCode","123")
success = json.UpdateString("payment.formsOfPayment[0].expiryDate","2022-10")
success = json.UpdateString("payment.formsOfPayment[0].cardHolder.givenName","John")
success = json.UpdateString("payment.formsOfPayment[0].cardHolder.surname","Smith")
success = json.UpdateString("payment.formsOfPayment[0].cardHolder.email","john@smith.family.priv")
success = json.UpdateString("payment.formsOfPayment[0].cardHolder.phone","+1-555-123-4567")
success = json.UpdateString("payment.formsOfPayment[0].cardHolder.address.street","1230 Ellen Ave, apt 10")
success = json.UpdateString("payment.formsOfPayment[0].cardHolder.address.city","Dallas")
success = json.UpdateString("payment.formsOfPayment[0].cardHolder.address.stateProvince","TX")
success = json.UpdateString("payment.formsOfPayment[0].cardHolder.address.postalCode","75063")
success = json.UpdateString("payment.formsOfPayment[0].cardHolder.address.countryCode","US")
success = json.UpdateString("payment.formsOfPayment[1].type","VIRTUAL_CARD")
success = json.UpdateString("payment.formsOfPayment[1].virtualCard.customerAccountCode","John")
success = json.UpdateString("payment.formsOfPayment[1].virtualCard.agencyEmail","john@smith.family.priv")
success = json.UpdateString("payment.formsOfPayment[1].virtualCard.hotelFax","john@smith.family.priv")
success = json.UpdateString("payment.formsOfPayment[1].virtualCard.hotelName","Ilia Hotel and Luxury Suites")
success = json.UpdateString("payment.formsOfPayment[1].virtualCard.roomType","2 double beds")
success = json.UpdateString("payment.formsOfPayment[1].virtualCard.roomDescription","Deluxe Room, 2 Double Beds")
success = json.UpdateString("payment.formsOfPayment[1].virtualCard.rateAmount.amount","100.00")
success = json.UpdateString("payment.formsOfPayment[1].virtualCard.rateAmount.currencyCode","USD")
success = json.UpdateString("payment.formsOfPayment[1].virtualCard.virtualCardCharges[0]","Breakfast")
success = json.UpdateString("payment.formsOfPayment[2].type","AGENCY_NAME")
success = json.UpdateString("payment.formsOfPayment[2].agencyAddress.name","John Smith")
success = json.UpdateString("payment.formsOfPayment[2].agencyAddress.street","1230 Ellen Ave, apt 10")
success = json.UpdateString("payment.formsOfPayment[2].agencyAddress.city","Dallas")
success = json.UpdateString("payment.formsOfPayment[2].agencyAddress.stateProvince","TX")
success = json.UpdateString("payment.formsOfPayment[2].agencyAddress.postalCode","75063")
success = json.UpdateString("payment.formsOfPayment[2].agencyAddress.countryCode","US")
success = json.UpdateString("payment.formsOfPayment[3].type","AGENCY_IATA")
success = json.UpdateString("payment.formsOfPayment[3].agencyIataNumber","129345738")
success = json.UpdateString("payment.formsOfPayment[4].type","CORPORATE")
success = json.UpdateString("payment.formsOfPayment[4].corporateId","CC006")
success = json.UpdateString("payment.formsOfPayment[5].type","COMPANY_NAME")
success = json.UpdateString("payment.formsOfPayment[5].companyAddress.name","John Smith")
success = json.UpdateString("payment.formsOfPayment[5].companyAddress.street","1230 Ellen Ave, apt 10")
success = json.UpdateString("payment.formsOfPayment[5].companyAddress.city","Dallas")
success = json.UpdateString("payment.formsOfPayment[5].companyAddress.stateProvince","TX")
success = json.UpdateString("payment.formsOfPayment[5].companyAddress.postalCode","75063")
success = json.UpdateString("payment.formsOfPayment[5].companyAddress.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.AuthToken = "<access_token>"
' resp is a Chilkat.HttpResponse
Set resp = http.PostJson3("https://domain.com/","application/json",json)
If (http.LastMethodSuccess = 0) Then
outFile.WriteLine(http.LastErrorText)
WScript.Quit
End If
outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)
outFile.Close
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 '{
"profiles": [
{
"uniqueId": "{{profileId}}",
"profileTypeCode": "TVL",
"domainId": "{{pcc}}"
}
],
"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"
}
},
"hotel": {
"bookingKey": "{{bookingKey}}",
"rooms": [
{
"travelerIndices": [
1
]
}
],
"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 profile",
"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 \"profiles\": [\n {\n \"uniqueId\": \"{{profileId}}\",\n \"profileTypeCode\": \"TVL\",\n \"domainId\": \"{{pcc}}\"\n }\n ],\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 },\n \"hotel\": {\n \"bookingKey\": \"{{bookingKey}}\",\n \"rooms\": [\n {\n \"travelerIndices\": [\n 1\n ]\n }\n ],\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": [
]
}