Chilkat Online Tools

PureBasic / Booking Management API v2021.12 / 3. airTicket

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.

    ; {
    ;   "AirTicketRQ": {
    ;     "DesignatePrinter": {
    ;       "Printers": {
    ;         "Ticket": {
    ;           "CountryCode": "AT"
    ;         }
    ;       }
    ;     },
    ;     "Itinerary": {
    ;       "ID": "{{pnr}}"
    ;     },
    ;     "Ticketing": [
    ;       {
    ;         "FOP_Qualifiers": {
    ;           "BasicFOP": {
    ;             "Type": "CA"
    ;           }
    ;         }
    ;       }
    ;     ],
    ;     "PostProcessing": {
    ;       "EndTransaction": {
    ;         "Source": {
    ;           "ReceivedFrom": "API TEST"
    ;         }
    ;       }
    ;     }
    ;   }
    ; }

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

    CkJsonObject::ckUpdateString(json,"AirTicketRQ.DesignatePrinter.Printers.Ticket.CountryCode","AT")
    CkJsonObject::ckUpdateString(json,"AirTicketRQ.Itinerary.ID","{{pnr}}")
    CkJsonObject::ckUpdateString(json,"AirTicketRQ.Ticketing[0].FOP_Qualifiers.BasicFOP.Type","CA")
    CkJsonObject::ckUpdateString(json,"AirTicketRQ.PostProcessing.EndTransaction.Source.ReceivedFrom","API TEST")

    CkHttp::ckSetRequestHeader(http,"accept","application/json")
    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/v1.2.0/air/ticket","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 "accept: application/json"
	-H "Content-Type: application/json"
	-d '{
    "AirTicketRQ": {
        "DesignatePrinter": {
            "Printers": {
                "Ticket": {
                    "CountryCode": "AT"
                }
            }
        },
        "Itinerary": {
            "ID": "{{pnr}}"
        },
        "Ticketing": [
            {
                "FOP_Qualifiers": {
                    "BasicFOP": {
                        "Type": "CA"
                    }
                }
            }
        ],
        "PostProcessing": {
            "EndTransaction": {
                "Source": {
                    "ReceivedFrom": "API TEST"
                }
            }
        }
    }
}'
https://domain.com/v1.2.0/air/ticket

Postman Collection Item JSON

{
  "name": "3. airTicket",
  "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",
          "});"
        ],
        "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"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"AirTicketRQ\": {\n        \"DesignatePrinter\": {\n            \"Printers\": {\n                \"Ticket\": {\n                    \"CountryCode\": \"AT\"\n                }\n            }\n        },\n        \"Itinerary\": {\n            \"ID\": \"{{pnr}}\"\n        },\n        \"Ticketing\": [\n            {\n                \"FOP_Qualifiers\": {\n                    \"BasicFOP\": {\n                        \"Type\": \"CA\"\n                    }\n                }\n            }\n        ],\n        \"PostProcessing\": {\n            \"EndTransaction\": {\n                \"Source\": {\n                    \"ReceivedFrom\": \"API TEST\"\n                }\n            }\n        }\n    }\n}"
    },
    "url": {
      "raw": "{{rest_endpoint}}/v1.2.0/air/ticket",
      "host": [
        "{{rest_endpoint}}"
      ],
      "path": [
        "v1.2.0",
        "air",
        "ticket"
      ]
    },
    "description": "### <br>"
  },
  "response": [
  ]
}