Authenticate Broker Endpoint

An existing Tixstock broker must be provided username, password, broker_id and exchange_id to get authenticated. The Authenticate Broker Endpoint should be used to authenticate the broker on Tixstock.


Endpoint URL

https://api.tixstock.com/broker/authenticate

Authorisation

Authorisation Description
Basic Auth A valid Basic auth must be provided within the Authorizarion as a username and password for the API request. To generate an access token, please see your API settings from within the Tixstock Broker Admin Area.

Please see 'Authentication - Basic Auth' for further information


Request Data

The supplied data must adhere to the following ruleset:

The User ID and Team ID must be supplied. Otherwise, an error will be outputted

Parameter Description
username * A valid Username must be supplied
Type: String
password * A valid Password must be supplied
Type: String
broker_id * A valid Broker ID must be supplied
Type: String
exchange_id * A valid Exchange ID must be supplied
Type: String
tixstock_account_is_open The Tixstock Account Is Open for the listing
Type: Boolean

API Response:

Please note, the example shown below displays no base64 PDF file and venue details empty. This data would be returned in a real api response.

{
    {
        "data": {
            "13": {
                "broker_id": "x-gl-1:bb31c9fd-af94-4fa8-bdff-5e1da0bd6932",
                "meta": {
                    "success": true,
                    "message": "Broker has been successfully authenticated"
                }
            }
        },
        "meta": {
            "mode": "Sandbox",
            "auth_token": "dGl4c3RvY2s6c2RoaXNkbmpvOTBr",
            "ip": "127.0.0.1"
        }
    }
}