package dev.panora.examples;import dev.panora.PanoraSDK;import dev.panora.exceptions.ApiException;public class Main { public static void main(String[] args) { PanoraSDK client = new PanoraSDK(System.getenv("PANORASDK_BEARER_TOKEN")); try { Object response = client.connectionsService.getConnections(); System.out.println(response); } catch (ApiException e) { e.printStackTrace(); } }}
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.