Permit.io Audit Log Replay API

The Audit Log Replay API from Permit.io — 1 operation(s) for audit log replay.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/permit-io-audit-log-replay-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

permit-io-audit-log-replay-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Permit.io Access Requests (EAP) Access Requests (EAP) Audit Log Replay API
  description: '

    Authorization as a service

    '
  version: 2.0.0
tags:
- name: Audit Log Replay
paths:
  /v2/audit-log-replay:
    post:
      tags:
      - Audit Log Replay
      summary: Run the audit log replay
      description: Run the audit log replay with the given parameters. This will replay PDP requests based on audit logs.
      operationId: run_audit_log_replay
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AuditLogReplayRequest'
        required: true
      responses:
        '202':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuditLogReplayResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AuditLogReplayResponse:
      properties:
        message:
          type: string
          title: Message
        document_count:
          type: integer
          title: Document Count
      type: object
      required:
      - message
      - document_count
      title: AuditLogReplayResponse
      description: Response model for audit log replay
    AuditLogReplayRequest:
      properties:
        pdp_url:
          type: string
          title: Pdp Url
          description: URL of the PDP to test against
          example: http://mydomain.com:7766
        start_time:
          type: integer
          title: Start Time
          description: Start time for the query (in seconds since epoch). Defaults to 24 hours ago.
          example: 1616432400
        end_time:
          type: integer
          title: End Time
          description: End time for the query (in seconds since epoch). Defaults to current time.
          example: 1616518800
        concurrency_limit:
          type: integer
          title: Concurrency Limit
          description: 'Concurrency limit for processing documents (max: 5)'
          default: 10
          example: 10
        graceful_shutdown_s:
          type: integer
          title: Graceful Shutdown S
          description: Graceful shutdown time in seconds
          default: 60
          example: 60
      type: object
      required:
      - pdp_url
      title: AuditLogReplayRequest
      description: Request model for audit log replay
  securitySchemes:
    HTTPBearer:
      type: http
      description: 'Authorization header, we support the bearer authentication scheme (see: RFC 6750)'
      scheme: bearer
      bearerFormat: JWT