Chilkat Online Tools

SQL Server / Booking Management API v2021.12 / createBooking - Air NDC with ProfileName

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    -- 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": [
    --     {
    --       "profileName": "{{profileName}}",
    --       "profileTypeCode": "TVL",
    --       "domainId": "{{pcc}}"
    --     }
    --   ],
    --   "flightOffer": {
    --     "offerId": "{{price_offer_id}}",
    --     "selectedOfferItems": [
    --       "{{price_offer_item_id}}"
    --     ]
    --   },
    --   "travelers": [
    --     {
    --       "id": "{{price_passenger_id}}"
    --     }
    --   ]
    -- }

    DECLARE @json int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @json OUT

    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'profiles[0].profileName', '{{profileName}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'profiles[0].profileTypeCode', 'TVL'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'profiles[0].domainId', '{{pcc}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'flightOffer.offerId', '{{price_offer_id}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'flightOffer.selectedOfferItems[0]', '{{price_offer_item_id}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'travelers[0].id', '{{price_passenger_id}}'

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Conversation-ID', '{{conv_id}}'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
    -- Adds the "Authorization: Bearer <access_token>" header.
    EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://domain.com/v1/trip/orders/createBooking', 'application/json', @json
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        RETURN
      END

    EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
    PRINT @iTmp0
    EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
    PRINT @sTmp0
    EXEC @hr = sp_OADestroy @resp


    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @json


END
GO

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-H "Conversation-ID: {{conv_id}}"
	-d '{
	"profiles": [
		{
			"profileName": "{{profileName}}",
			"profileTypeCode": "TVL",
			"domainId": "{{pcc}}"
		}
	],
	"flightOffer": {
		"offerId": "{{price_offer_id}}",
		"selectedOfferItems": [
			"{{price_offer_item_id}}"
		]
	},
		"travelers": [
		{
			"id": "{{price_passenger_id}}"
		}
	]
}'
https://domain.com/v1/trip/orders/createBooking

Postman Collection Item JSON

{
  "name": "createBooking - Air NDC  with ProfileName",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json"
      },
      {
        "key": "Conversation-ID",
        "type": "text",
        "value": "{{conv_id}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n\t\"profiles\": [\n\t\t{\n\t\t\t\"profileName\": \"{{profileName}}\",\n\t\t\t\"profileTypeCode\": \"TVL\",\n\t\t\t\"domainId\": \"{{pcc}}\"\n\t\t}\n\t],\n\t\"flightOffer\": {\n\t\t\"offerId\": \"{{price_offer_id}}\",\n\t\t\"selectedOfferItems\": [\n\t\t\t\"{{price_offer_item_id}}\"\n\t\t]\n\t},\n\t\t\"travelers\": [\n\t\t{\n\t\t\t\"id\": \"{{price_passenger_id}}\"\n\t\t}\n\t]\n}"
    },
    "url": {
      "raw": "{{rest_endpoint}}/v1/trip/orders/createBooking",
      "host": [
        "{{rest_endpoint}}"
      ],
      "path": [
        "v1",
        "trip",
        "orders",
        "createBooking"
      ]
    },
    "description": "[//]: # \"Start\"\n\n<b>[Description](https://developer.sabre.com/docs/rest_apis/trip/orders/booking_management), [Resources](https://developer.sabre.com/docs/rest_apis/trip/orders/booking_management/reference-documentation), [Help](https://developer.sabre.com/docs/rest_apis/trip/orders/booking_management/help)</b>\n\n[//]: # \"End\""
  },
  "response": [
  ]
}