Available Access
Authorizations
Query parameters
limitinteger · int32OptionalDefault:
100
namestring[] | nullableOptional
page_tokenstring | nullableOptional
Responses
200
OK
application/json
get
GET /api/user/v1/available-access/bundles HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
{
"items": [
{
"id": "text",
"name": "text"
}
],
"pagination": {
"next_page_token": "text"
}
}
Authorizations
Query parameters
integration_idstring | nullableOptional
integration_namestring | nullableOptional
limitinteger · int32OptionalDefault:
100
page_tokenstring | nullableOptional
permission_namestring[] | nullableOptional
resource_type_idstring[] | nullableOptional
Responses
200
OK
application/json
get
GET /api/user/v1/available-access/entitlements HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
{
"items": [
{
"integration": {
"id": "text",
"name": "text"
},
"resource": {
"id": "text",
"source_id": "text",
"type": {
"id": "text",
"label": "text"
},
"name": "text"
},
"permission": {
"id": "text",
"source_id": "text",
"name": "text"
}
}
],
"pagination": {
"next_page_token": "text"
}
}
Last updated
Was this helpful?