LogoLogo
API Reference
API Reference
  • API OVERVIEW
    • Getting Started with the Apono API
    • API Authentication
  • New Endpoints
  • APONO
    • Groups
    • Access Flows
    • Bundles
    • Connectors
    • Users
    • Integrations
    • Access Sessions
    • Available Access
    • Access Requests
    • Access Bundles
    • Identities
    • Activity
    • Access Scopes
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. APONO

Available Access

PreviousAccess SessionsNextAccess Requests

Last updated 9 days ago

Was this helpful?

List Available Bundles

get
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"
  }
}

List Available Entitlements

get
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"
  }
}
  • GETList Available Bundles
  • GETList Available Entitlements