LogoLogo
API Reference
API Reference
  • API OVERVIEW
    • Getting started using Apono API
    • API Authentication
  • APONO
    • Access Bundles
    • Access Flows
    • Identities
    • Connectors
    • Integrations
    • Users
    • Access Requests
    • Activity
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. APONO

Activity

PreviousAccess Requests

Last updated 6 months ago

Was this helpful?

List Activity

get
Authorizations
Query parameters
end_dateinteger · int64 | nullableOptional
filter[integration_id]string[] | nullableOptional
filter[permission]string[] | nullableOptional
filter[requestor_id]string[] | nullableOptional
filter[resource]string[] | nullableOptional
filter[resource_type]string[] | nullableOptional
filter[status]string[] | nullableOptional
filter[trigger_type]string[] | nullableOptional
start_dateinteger · int64 | nullableOptional
Responses
200
OK
application/json
get
GET /api/v3/activity HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "data": [
    {
      "request_id": "text",
      "request_date": "text",
      "requestor_name": "text",
      "requestor_email": "text",
      "integration": "text",
      "resource_type": "text",
      "resources": [
        "text"
      ],
      "permissions": [
        "text"
      ],
      "justification": "text",
      "status": "text",
      "trigger_type": "text",
      "access_flow": "text"
    }
  ],
  "pagination": {
    "total": 1,
    "limit": 1,
    "offset": 1
  }
}