Common Elements

All the requests and responses of the Avia Server have a certain number of common elements.

List of Elements

Request

  • Requisites - server access requisites. Data type - custom.
  • Requisites.Login - server access login. Data type - string.
  • Requisites.Password - server access password. Data type - string.
  • Requisites.UserContextId - ID of the user to which the preferences will be applied (request filters, currency rates, pricing, flight cloning, router, mixer, airlines timetable). Data type - string.
  • Requisites.AuthToken - server access key. Data type - string. It is required to specify either this key or the login+password pair.
  • RequestType - request initializer type. Data type - enumeration, possible values:
    • 0 (U) - user (default)
    • 1 (F) - background
    • 2 (S) - scheduled
    • 3 (N) - used to secure the recursive calls
    • 4 (P) - middleware.
    • 5 (C) - callback.
  • UserID - ID of the user who needs to initiate a request to the server. Data type - non-negative 32-bit integer.
  • RequestBody - server request body. Data type - custom.
  • RequestBody.ResponseParameters - response parameters. Data type - custom.
  • RequestBody.ResponseParameters.Language - response language. Data type - string.
  • RequestBody.ResponseParameters.SendStaticData - whether to return statics in the response. Data type - bool.

Sample

            <stl:Requisites>
               <stl:Login>login</stl:Login>
               <stl:Password>password</stl:Password>
            </stl:Requisites>
            <stl:UserID>11111</stl:UserID>
            <stl:RequestType>P</stl:RequestType>

When authorizing via WebSkyTech, orders are exported on condition that the request type was different from P. The requests of P type are not exported.

Sample

            <stl:Requisites>
               <stl:AuthToken>login</stl:AuthToken>
            </stl:Requisites>
            <stl:UserID>11111</stl:UserID>
            <stl:RequestType>U</stl:RequestType>