OELoginRequest
Note
For a more in depth documentation, you should check the comments from the protobuf file.
Purpose
Used to for authorization in Order Entry Account.
Warning
The client should wait for the OELogin response, before sending any other request.
Fields
The mandatory fields for the login request are:
user_name
- Client username.
passwordHash
- Client hash password.
orderEntryProvider
- OrderEntryProvider - type of Order Entry Provider, all list of supported providers can be found here ().
isRelogin
- Flag, that determine, whether it is a request to reconnect, or first login.
Request example
const OELoginRequest = {
username: "username",
passwordHash: "hashed_password",
orderEntryProvider: "QOR",
isRelogin: false
}