installs_list
GET
/installs
const url = 'https://api.canopyhq.dev/installs';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/installs \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Every install the tenant has consented to.
Media typeapplication/json
Array<string>
Examplegenerated
[ "example"]No console token, or one that did not verify.