Access Scopes
Last updated
Was this helpful?
Last updated
Was this helpful?
GET /api/admin/v1/access-scopes/{id} HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"id": "text",
"name": "text",
"query": "text",
"creation_date": "text",
"update_date": "text"
}
100
GET /api/admin/v1/access-scopes HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"items": [
{
"id": "text",
"name": "text",
"query": "text",
"creation_date": "text",
"update_date": "text"
}
],
"pagination": {
"next_page_token": "text"
}
}
Display name of the access scope
Apono Query Language (AQL) expression that defines filters for cloud resources, integrations, and permissions
POST /api/admin/v1/access-scopes HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 30
{
"name": "text",
"query": "text"
}
OK
{
"id": "text",
"name": "text",
"query": "text",
"creation_date": "text",
"update_date": "text"
}
Display name of the access scope
Apono Query Language (AQL) expression that defines filters for cloud resources, integrations, and permissions
PUT /api/admin/v1/access-scopes/{id} HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 30
{
"name": "text",
"query": "text"
}
OK
{
"id": "text",
"name": "text",
"query": "text",
"creation_date": "text",
"update_date": "text"
}