from os import getenvfrom pprint import pprintfrom panorasdk import PanoraSDKsdk = PanoraSDK()sdk.set_access_token(getenv("PANORASDK_ACCESS_TOKEN"))results = sdk.connections.get_connections()pprint(vars(results))
This will list all the connections available, across all users. You should get an object similar to this one below. Read more about the connection object.