Initializing Brokerage Session

View as MarkdownOpen in Claude

A brokerage session is required for endpoints prefixed with the /iserver path. To initialize a brokerage session, send a request to the /iserver/auth/ssodh/init endpoint.

1import requests
2
3url = "https://localhost:5000/v1/api/iserver/auth/ssodh/init"
4payload = {}
5headers = {"Content-Type": "application/json"}
6
7response = requests.post(url, json=payload, headers=headers)