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

# List account restrictions

> Returns account restrictions for an account, optionally filtered by status.



## OpenAPI

````yaml get /v1/accounts/{accountId}/restrictions
openapi: 3.0.3
info:
  title: Ledger Client API
  version: 1.0.0
  description: API for ledger operations - parties, accounts, transactions
servers: []
security: []
tags:
  - name: Account Statements
    description: Retrieve account transaction history
  - name: Accounts
    description: Account management operations
  - name: Open Banking - Accounts
    description: PSD2 Account Information Service (AIS) - Account endpoints
  - name: Open Banking - Funds Confirmation
    description: PSD2 Confirmation of Funds Service (PIIS)
  - name: Open Banking - Payments
    description: PSD2 Payment Initiation Service (PIS)
  - name: Open Banking - Transactions
    description: PSD2 Account Information Service (AIS) - Transaction endpoints
  - name: Parties
    description: Party management operations
  - name: Payments
    description: Payment operations
  - name: Transaction Postings
    description: Retrieve transaction postings
  - name: Transactions
    description: Transaction execution operations
paths:
  /v1/accounts/{accountId}/restrictions:
    get:
      tags:
        - Accounts
      summary: List account restrictions
      description: Returns account restrictions, optionally filtered by status
      parameters:
        - description: Account ID
          example: 019bdb2a-960f-789d-8955-21720e6cdeed
          name: accountId
          in: path
          required: true
          schema:
            $ref: '#/components/schemas/UUID'
        - name: page
          in: query
          schema:
            format: int32
            description: Page number (0-based)
            minimum: 0
            type: integer
            example: 0
        - name: size
          in: query
          schema:
            format: int32
            description: Number of items per page (max 100)
            maximum: 100
            minimum: 1
            type: integer
            example: 20
        - name: sortBy
          in: query
          schema:
            description: Field name to sort by
            default: createdAt
            type: string
            example: createdAt
        - name: sortDirection
          in: query
          schema:
            description: Sort direction
            default: DESC
            type: object
        - description: Optional restriction status filter
          example: ACTIVE
          name: status
          in: query
          schema:
            allOf:
              - $ref: '#/components/schemas/RestrictionStatus'
            nullable: true
      responses:
        '200':
          description: Account restrictions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedResponseAccountRestrictionResponse'
        '404':
          description: Account not found
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
        '500':
          description: Internal server error
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
components:
  schemas:
    UUID:
      format: uuid
      pattern: >-
        [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}
      type: string
    RestrictionStatus:
      description: Restriction status
      enum:
        - ACTIVE
        - LIFTED
      type: string
    PagedResponseAccountRestrictionResponse:
      description: Paginated response wrapper
      type: object
      properties:
        data:
          description: List of items for the current page
          type: array
          items:
            $ref: '#/components/schemas/AccountRestrictionResponse'
        page:
          format: int32
          description: Current page number (0-based)
          type: integer
          example: 0
        size:
          format: int32
          description: Number of items per page
          type: integer
          example: 100
        totalPages:
          format: int32
          description: Total number of pages
          type: integer
          example: 5
    Problem:
      description: >-
        RFC 9457 problem details. See [Error Handling](/ledger/error-handling)
        for the response shape.
      required:
        - status
        - title
        - instance
      type: object
      properties:
        status:
          format: int32
          description: HTTP status code
          type: integer
          example: 500
        title:
          description: Short, human-readable summary of the problem type
          type: string
        instance:
          description: URI reference identifying this occurrence of the problem
          type: string
        detail:
          description: >-
            Human-readable explanation specific to this occurrence of the
            problem
          type: string
          nullable: true
    AccountRestrictionResponse:
      description: Account restriction
      type: object
      properties:
        id:
          format: uuid
          description: Restriction ID
          pattern: >-
            [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}
          type: string
          example: 019bdb2a-960f-789d-8955-21720e6cdeed
        status:
          description: Restriction status
          type: string
          example: ACTIVE
        type:
          description: Restriction type
          type: string
          example: REJECT_OUTBOUND
        source:
          description: Restriction source
          type: string
          example: PLAIS
        reason:
          description: Free-text reason for the restriction
          type: string
          example: PLAIS restriction
          nullable: true
        externalRef:
          description: External reference associated with the restriction
          type: string
          example: PLAIS-2026-12345
          nullable: true
        createdAt:
          format: date-time
          description: Restriction creation timestamp
          type: string
          example: '2026-01-22T13:47:21.542Z'
        updatedAt:
          format: date-time
          description: Restriction update timestamp
          type: string
          example: '2026-01-22T13:47:21.542Z'

````