Chilkat Online Tools

PureBasic / Booking Management API v2021.12 / 1. Shop (BFM)

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    ; Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    ; The following JSON is sent in the request body.

    ; {
    ;   "OTA_AirLowFareSearchRQ": {
    ;     "Version": "1",
    ;     "POS": {
    ;       "Source": [
    ;         {
    ;           "PseudoCityCode": "{{pcc}}",
    ;           "RequestorID": {
    ;             "Type": "1",
    ;             "ID": "1",
    ;             "CompanyName": {
    ;               "Code": "TN"
    ;             }
    ;           }
    ;         }
    ;       ]
    ;     },
    ;     "OriginDestinationInformation": [
    ;       {
    ;         "RPH": "1",
    ;         "DepartureDateTime": "{{start_date}}T00:00:00",
    ;         "OriginLocation": {
    ;           "LocationCode": "KRK"
    ;         },
    ;         "DestinationLocation": {
    ;           "LocationCode": "STN"
    ;         }
    ;       }
    ;     ],
    ;     "TravelPreferences": {
    ;       "VendorPref": [
    ;         {
    ;           "Code": "FR"
    ;         }
    ;       ],
    ;       "TPA_Extensions": {
    ;         "NumTrips": {
    ;           "Number": 10
    ;         },
    ;         "DataSources": {
    ;           "NDC": "Disable",
    ;           "ATPCO": "Disable",
    ;           "LCC": "Enable"
    ;         },
    ;         "PreferNDCSourceOnTie": {
    ;           "Value": true
    ;         }
    ;       }
    ;     },
    ;     "TravelerInfoSummary": {
    ;       "AirTravelerAvail": [
    ;         {
    ;           "PassengerTypeQuantity": [
    ;             {
    ;               "Code": "ADT",
    ;               "Quantity": 1
    ;             }
    ;           ]
    ;         }
    ;       ]
    ;     },
    ;     "TPA_Extensions": {
    ;       "IntelliSellTransaction": {
    ;         "RequestType": {
    ;           "Name": "200ITINS"
    ;         }
    ;       }
    ;     }
    ;   }
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.Version","1")
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.POS.Source[0].PseudoCityCode","{{pcc}}")
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.POS.Source[0].RequestorID.Type","1")
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.POS.Source[0].RequestorID.ID","1")
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.POS.Source[0].RequestorID.CompanyName.Code","TN")
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.OriginDestinationInformation[0].RPH","1")
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.OriginDestinationInformation[0].DepartureDateTime","{{start_date}}T00:00:00")
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.OriginDestinationInformation[0].OriginLocation.LocationCode","KRK")
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.OriginDestinationInformation[0].DestinationLocation.LocationCode","STN")
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.TravelPreferences.VendorPref[0].Code","FR")
    CkJsonObject::ckUpdateInt(json,"OTA_AirLowFareSearchRQ.TravelPreferences.TPA_Extensions.NumTrips.Number",10)
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.TravelPreferences.TPA_Extensions.DataSources.NDC","Disable")
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.TravelPreferences.TPA_Extensions.DataSources.ATPCO","Disable")
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.TravelPreferences.TPA_Extensions.DataSources.LCC","Enable")
    CkJsonObject::ckUpdateBool(json,"OTA_AirLowFareSearchRQ.TravelPreferences.TPA_Extensions.PreferNDCSourceOnTie.Value",1)
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.TravelerInfoSummary.AirTravelerAvail[0].PassengerTypeQuantity[0].Code","ADT")
    CkJsonObject::ckUpdateInt(json,"OTA_AirLowFareSearchRQ.TravelerInfoSummary.AirTravelerAvail[0].PassengerTypeQuantity[0].Quantity",1)
    CkJsonObject::ckUpdateString(json,"OTA_AirLowFareSearchRQ.TPA_Extensions.IntelliSellTransaction.RequestType.Name","200ITINS")

    CkHttp::ckSetRequestHeader(http,"Conversation-ID","{{conv_id}}")
    CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")
    ; Adds the "Authorization: Bearer <access_token>" header.
    CkHttp::setCkAuthToken(http, "<access_token>")

    resp.i = CkHttp::ckPostJson3(http,"https://domain.com/v2/offers/shop","application/json",json)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)


    ProcedureReturn
EndProcedure

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-H "Conversation-ID: {{conv_id}}"
	-d '{
    "OTA_AirLowFareSearchRQ": {
        "Version": "1",
        "POS": {
            "Source": [{
                    "PseudoCityCode": "{{pcc}}",
                    "RequestorID": {
                        "Type": "1",
                        "ID": "1",
                        "CompanyName": {
                            "Code": "TN"
                        }
                    }
                }
            ]
        },
        "OriginDestinationInformation": [{
                "RPH": "1",
                "DepartureDateTime": "{{start_date}}T00:00:00",
                "OriginLocation": {
                    "LocationCode": "KRK"
                },
                "DestinationLocation": {
                    "LocationCode": "STN"
                }
            }
        ],
        "TravelPreferences": {
			"VendorPref": [
				{
					"Code" : "FR"
				}
			],
            "TPA_Extensions": {
                "NumTrips": {
                    "Number": 10
                },
                "DataSources": {
                    "NDC": "Disable",
                    "ATPCO": "Disable",
                    "LCC": "Enable"
                },
                 "PreferNDCSourceOnTie": {
                    "Value": true
                }

 

            }
        },
        "TravelerInfoSummary": {
            "AirTravelerAvail": [{
                    "PassengerTypeQuantity": [{
                            "Code": "ADT",
                            "Quantity": 1
                        }
                    ]
                }
            ]
        },
        "TPA_Extensions": {
            "IntelliSellTransaction": {
                "RequestType": {
                    "Name": "200ITINS"
                }
            }
        }
    }
}'
https://domain.com/v2/offers/shop

Postman Collection Item JSON

{
  "name": "1. Shop (BFM)",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "const itinNumber = 0;",
          "",
          "var jsonData = JSON.parse(responseBody);",
          "var outboundData = jsonData.groupedItineraryResponse.scheduleDescs[0];",
          "",
          "",
          "pm.environment.set(\"oFlightNumber\", outboundData.carrier.marketingFlightNumber);",
          "pm.environment.set(\"oResBookDesigCode\", outboundData.ResBookDesigCode);",
          "pm.environment.set(\"oDepartureTime\", outboundData.departure.time.substring(0, 5));",
          "pm.environment.set(\"oDepartureAirport\", outboundData.departure.airport);",
          "pm.environment.set(\"oArrivalAirport\", outboundData.arrival.airport);",
          "pm.environment.set(\"oMarketingAirline\", outboundData.carrier.marketing);",
          "pm.environment.set(\"oOperatingAirline\", outboundData.carrier.operating);",
          "",
          ""
        ],
        "type": "text/javascript"
      }
    },
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json",
        "type": "text"
      },
      {
        "key": "Conversation-ID",
        "value": "{{conv_id}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"OTA_AirLowFareSearchRQ\": {\n        \"Version\": \"1\",\n        \"POS\": {\n            \"Source\": [{\n                    \"PseudoCityCode\": \"{{pcc}}\",\n                    \"RequestorID\": {\n                        \"Type\": \"1\",\n                        \"ID\": \"1\",\n                        \"CompanyName\": {\n                            \"Code\": \"TN\"\n                        }\n                    }\n                }\n            ]\n        },\n        \"OriginDestinationInformation\": [{\n                \"RPH\": \"1\",\n                \"DepartureDateTime\": \"{{start_date}}T00:00:00\",\n                \"OriginLocation\": {\n                    \"LocationCode\": \"KRK\"\n                },\n                \"DestinationLocation\": {\n                    \"LocationCode\": \"STN\"\n                }\n            }\n        ],\n        \"TravelPreferences\": {\n\t\t\t\"VendorPref\": [\n\t\t\t\t{\n\t\t\t\t\t\"Code\" : \"FR\"\n\t\t\t\t}\n\t\t\t],\n            \"TPA_Extensions\": {\n                \"NumTrips\": {\n                    \"Number\": 10\n                },\n                \"DataSources\": {\n                    \"NDC\": \"Disable\",\n                    \"ATPCO\": \"Disable\",\n                    \"LCC\": \"Enable\"\n                },\n                 \"PreferNDCSourceOnTie\": {\n                    \"Value\": true\n                }\n\n \n\n            }\n        },\n        \"TravelerInfoSummary\": {\n            \"AirTravelerAvail\": [{\n                    \"PassengerTypeQuantity\": [{\n                            \"Code\": \"ADT\",\n                            \"Quantity\": 1\n                        }\n                    ]\n                }\n            ]\n        },\n        \"TPA_Extensions\": {\n            \"IntelliSellTransaction\": {\n                \"RequestType\": {\n                    \"Name\": \"200ITINS\"\n                }\n            }\n        }\n    }\n}"
    },
    "url": {
      "raw": "{{rest_endpoint}}/v2/offers/shop",
      "host": [
        "{{rest_endpoint}}"
      ],
      "path": [
        "v2",
        "offers",
        "shop"
      ]
    },
    "description": "[//]: # \"Start\"\n\n<b>[Description](https://developer.sabre.com/docs/rest_apis/air/search/bargain_finder_max/versions/v430), [Resources](https://developer.sabre.com/docs/rest_apis/air/search/bargain_finder_max/versions/v430/reference-documentation)</b>\n\n[//]: # \"End\""
  },
  "response": [
  ]
}