Chilkat Online Tools

PureBasic / Booking Management API v2021.12 / SessionCloseRQ (Stateful ATH) close session

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.

    ; {}

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

    ; Adds the "Authorization: Bearer <access_token>" header.
    CkHttp::setCkAuthToken(http, "<access_token>")
    CkHttp::ckSetRequestHeader(http,"Content-Type","text/xml")

    resp.i = CkHttp::ckPostJson3(http,"https://domain.com/","text/xml",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: text/xml"
	-d '{{header}}

<SessionCloseRQ>
	<POS>
		<Source PseudoCityCode="{{pcc}}"/>
	</POS>
</SessionCloseRQ>
        
{{footer}}'
https://domain.com/

Postman Collection Item JSON

{
  "name": "SessionCloseRQ  (Stateful ATH) close session",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "//cleanup\r",
          "pm.environment.unset('token')\r",
          "pm.environment.unset('filterName')\r",
          "pm.environment.unset('profileName')"
        ],
        "type": "text/javascript"
      }
    },
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "text/xml"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{{header}}\n\n<SessionCloseRQ>\n\t<POS>\n\t\t<Source PseudoCityCode=\"{{pcc}}\"/>\n\t</POS>\n</SessionCloseRQ>\n        \n{{footer}}"
    },
    "url": {
      "raw": "{{soap_endpoint}}",
      "host": [
        "{{soap_endpoint}}"
      ]
    },
    "description": "Used to close stateful sessions on Sabre's Passenger Sales System"
  },
  "response": [
  ]
}