Access Scopes
100Filter access scopes by name. Supports wildcard () for partial matches - use * for contains, prefix for starts with, *suffix for ends with
List of space IDs or names to filter results by. If omitted, returns objects from all spaces. To return only objects that belong to no space, include the special value "null" in the list
OK
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",
"description": "text",
"query": "text",
"space": {
"space_id": "text",
"space_name": "text"
},
"creation_date": "text",
"update_date": "text"
}
],
"pagination": {
"next_page_token": "text"
}
}ID or name of the space where to create the resource. If null or empty, the object is created without a space
Display name of the access scope
Description of the access scope
Apono Query Language (AQL) expression that defines filters for cloud resources, integrations, and permissions
OK
Unique identifier of the access scope
Display name of the access scope
Description of the access scope
Apono Query Language (AQL) expression that defines filters for cloud resources, integrations, and permissions
ISO 8601 formatted date-time
ISO 8601 formatted date-time
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: 51
{
"name": "text",
"description": "text",
"query": "text"
}OK
{
"id": "text",
"name": "text",
"description": "text",
"query": "text",
"space": {
"space_id": "text",
"space_name": "text"
},
"creation_date": "text",
"update_date": "text"
}OK
Unique identifier of the access scope
Display name of the access scope
Description of the access scope
Apono Query Language (AQL) expression that defines filters for cloud resources, integrations, and permissions
ISO 8601 formatted date-time
ISO 8601 formatted date-time
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",
"description": "text",
"query": "text",
"space": {
"space_id": "text",
"space_name": "text"
},
"creation_date": "text",
"update_date": "text"
}Display name of the access scope
Description of the access scope
Apono Query Language (AQL) expression that defines filters for cloud resources, integrations, and permissions
OK
Unique identifier of the access scope
Display name of the access scope
Description of the access scope
Apono Query Language (AQL) expression that defines filters for cloud resources, integrations, and permissions
ISO 8601 formatted date-time
ISO 8601 formatted date-time
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: 51
{
"name": "text",
"description": "text",
"query": "text"
}OK
{
"id": "text",
"name": "text",
"description": "text",
"query": "text",
"space": {
"space_id": "text",
"space_name": "text"
},
"creation_date": "text",
"update_date": "text"
}No Content
No content
DELETE /api/admin/v1/access-scopes/{id} HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No Content
No content
Last updated
Was this helpful?
