> ## 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 Mandates



## OpenAPI

````yaml /openapi.json get /v1/ops/mandates
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/mandates:
    get:
      tags:
        - Operator
      summary: Ops Mandates
      operationId: ops_mandates_v1_ops_mandates_get
      parameters:
        - in: query
          name: limit
          required: false
          schema:
            default: 100
            maximum: 200
            minimum: 1
            title: Limit
            type: integer
        - in: query
          name: offset
          required: false
          schema:
            default: 0
            minimum: 0
            title: Offset
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/MandateView'
                title: Response Ops Mandates V1 Ops Mandates 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:
    MandateView:
      additionalProperties: false
      properties:
        authorized_clients:
          items:
            type: string
          title: Authorized Clients
          type: array
        authorized_rules:
          items:
            type: string
          title: Authorized Rules
          type: array
        beneficiary_id:
          title: Beneficiary Id
          type: string
        created_at:
          format: date-time
          title: Created At
          type: string
        daily_max:
          $ref: '#/components/schemas/Money'
        destination_currency:
          title: Destination Currency
          type: string
        expires_at:
          format: date-time
          title: Expires At
          type: string
        id:
          title: Id
          type: string
        monthly_max:
          $ref: '#/components/schemas/Money'
        payment_count:
          title: Payment Count
          type: integer
        per_payment_max:
          $ref: '#/components/schemas/Money'
        purpose_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Purpose Code
        state:
          title: State
          type: string
        total_cap:
          $ref: '#/components/schemas/Money'
        weekly_max:
          $ref: '#/components/schemas/Money'
      required:
        - id
        - beneficiary_id
        - destination_currency
        - purpose_code
        - per_payment_max
        - total_cap
        - payment_count
        - daily_max
        - weekly_max
        - monthly_max
        - expires_at
        - authorized_clients
        - authorized_rules
        - state
        - created_at
      title: MandateView
      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
    Money:
      additionalProperties: false
      properties:
        amount:
          examples:
            - '125.50'
          pattern: ^\+?(?:\d*[1-9]\d*(?:\.\d*)?|\d*\.\d*[1-9]\d*)(?:[eE][+-]?\d+)?$
          title: Amount
          type: string
        currency:
          examples:
            - AED
          pattern: ^[A-Za-z]{3}$
          title: Currency
          type: string
      required:
        - currency
        - amount
      title: Money
      type: object

````