connections_list
GET
/connections
const url = 'https://api.canopyhq.dev/connections';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.canopyhq.dev/connections \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Every connection the tenant owns.
Media typeapplication/json
Array<string>
Examplegenerated
[ "example"]No console token, or one that did not verify.