> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neobank.proofof.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# Ops Audit



## OpenAPI

````yaml /openapi.json get /v1/ops/audit
openapi: 3.1.0
info:
  summary: >-
    Canonical API for customer onboarding, accounts, remittance, mandates, and
    cards.
  title: Example Neobank
  version: 0.1.0
servers: []
security: []
paths:
  /v1/ops/audit:
    get:
      tags:
        - Operator
      summary: Ops Audit
      operationId: ops_audit_v1_ops_audit_get
      parameters:
        - in: query
          name: customer_id
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Customer Id
        - in: query
          name: limit
          required: false
          schema:
            default: 100
            maximum: 200
            minimum: 1
            title: Limit
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/AuditEventView'
                title: Response Ops Audit V1 Ops Audit Get
                type: array
          description: Successful Response
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
          description: Malformed or invalid request semantics
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
          description: Authentication required
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
          description: Action not permitted
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
          description: Resource not found
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
          description: State or idempotency conflict
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
          description: Request validation failed
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
          description: Rate limit exceeded
        '502':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
          description: Invalid upstream response
        '503':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
          description: Provider capability unavailable
        '504':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
          description: Provider timeout
components:
  schemas:
    AuditEventView:
      additionalProperties: false
      properties:
        action:
          title: Action
          type: string
        actor_client_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Actor Client Id
        actor_id:
          title: Actor Id
          type: string
        created_at:
          format: date-time
          title: Created At
          type: string
        customer_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Customer Id
        id:
          title: Id
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        request_id:
          title: Request Id
          type: string
        resource_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Resource Id
        resource_type:
          title: Resource Type
          type: string
      required:
        - id
        - customer_id
        - actor_id
        - actor_client_id
        - action
        - resource_type
        - resource_id
        - request_id
        - metadata
        - created_at
      title: AuditEventView
      type: object
    ProblemDetails:
      additionalProperties: false
      properties:
        code:
          title: Code
          type: string
        detail:
          title: Detail
          type: string
        fields:
          anyOf:
            - items:
                additionalProperties: true
                type: object
              type: array
            - type: 'null'
          title: Fields
        instance:
          title: Instance
          type: string
        refresh_onboarding:
          title: Refresh Onboarding
          type: boolean
        request_id:
          title: Request Id
          type: string
        retryable:
          title: Retryable
          type: boolean
        status:
          title: Status
          type: integer
        submission_uncertain:
          title: Submission Uncertain
          type: boolean
        title:
          title: Title
          type: string
        type:
          title: Type
          type: string
      required:
        - type
        - title
        - status
        - detail
        - instance
        - code
        - request_id
        - retryable
        - submission_uncertain
        - refresh_onboarding
      title: ProblemDetails
      type: object

````