List Trust Access grants
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/admin/grants \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/trust-access/admin/grants', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/trust-access/admin/grants"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Trust Access
List Trust Access grants | Comp AI API
List active, expired, and revoked Trust Access grants for customer security reviews and shared compliance resources.
GET
/
v1
/
trust-access
/
admin
/
grants
List Trust Access grants
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/admin/grants \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/trust-access/admin/grants', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/trust-access/admin/grants"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Authorizations
API key for authentication
Response
200
Grants retrieved
Was this page helpful?

