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

# List accounting profiles

> Returns a page of the posting configurations attached to loan product versions, newest first, each with how many posting rules it holds and which business events those rules cover.



## OpenAPI

````yaml /es/openapi/v3-current/lender.yaml get /api/v1/accounting-profiles
openapi: 3.1.0
info:
  contact:
    email: contact@lerian.studio
    name: Lerian Studio
    url: https://lerian.studio
  description: >-
    Code-first OpenAPI 3.1 surface for the Lender service. Routes that move
    money are at-most-once per X-Idempotency: when one answers 5xx, the
    X-Idempotency-Fenced response header says whether that key is now refusing
    resends (true) or free to retry (false or absent). See
    docs/contracts/money-route-idempotency.md.
  license:
    name: Lerian Studio General License
  title: Lender API
  version: 1.0.0
servers:
  - url: https://lender.sandbox.lerian.net
security:
  - BearerAuth: []
tags:
  - description: >-
      Caller session projection: validated subject and effective permissions for
      the presented token.
    name: Session
  - description: >-
      Ledger accounting operations: journal entries and accrual postings for
      loan accounts.
    name: Accounting
  - description: >-
      Loan application intake and lifecycle: submission, decisioning, and
      status.
    name: LoanApplications
  - description: >-
      Loan product catalog: definition, versioning, and activation of lending
      products.
    name: LoanProducts
  - description: >-
      Loan account servicing operations: balances, schedules, and account-level
      actions.
    name: Loan Accounts
  - description: >-
      Portfolio dashboard read operations: aggregated portfolio and performance
      views.
    name: Dashboard
  - description: >-
      Jurisdiction registry: supported jurisdiction profiles and their
      capabilities.
    name: Jurisdictions
  - description: >-
      Jurisdiction-specific loan application operations (Brazil origination
      surface).
    name: Loan Applications
  - description: >-
      Tax computation operations for jurisdiction-specific lending (e.g. Brazil
      IOF).
    name: Tax
  - description: >-
      Brazil consignado privado operations: contract lifecycle, exclusion
      repair, and compensating adjustments.
    name: Consignado
  - description: >-
      Credit-instrument document template registry: versioned drafting and
      publication of CCB clausulado.
    name: DocumentTemplates
paths:
  /api/v1/accounting-profiles:
    get:
      tags:
        - Accounting
      summary: List accounting profiles
      description: >-
        Returns a page of the posting configurations attached to loan product
        versions, newest first, each with how many posting rules it holds and
        which business events those rules cover.
      operationId: listAccountingProfiles
      parameters:
        - description: >-
            Narrow to the charts of one loan product version. A version owns a
            chain of charts, each with the day it takes force; combine with asOf
            for the one governing a given day.
          explode: false
          in: query
          name: loanProductVersionId
          schema:
            description: >-
              Narrow to the charts of one loan product version. A version owns a
              chain of charts, each with the day it takes force; combine with
              asOf for the one governing a given day.
            format: uuid
            type: string
        - description: Narrow to one accounting mode.
          explode: false
          in: query
          name: accountingMode
          schema:
            description: Narrow to one accounting mode.
            enum:
              - accrual
              - cash
            type: string
        - description: >-
            Narrow to the chart IN FORCE on this civil day (YYYY-MM-DD), one per
            loan product version: the one with the greatest effectiveFrom at or
            below it. Omit to list the whole chain, which is what an audit of
            how the configuration changed needs. A future day answers what the
            product will book into once a scheduled chart takes force.
          explode: false
          in: query
          name: asOf
          schema:
            description: >-
              Narrow to the chart IN FORCE on this civil day (YYYY-MM-DD), one
              per loan product version: the one with the greatest effectiveFrom
              at or below it. Omit to list the whole chain, which is what an
              audit of how the configuration changed needs. A future day answers
              what the product will book into once a scheduled chart takes
              force.
            format: date
            type: string
        - description: Page size.
          explode: false
          in: query
          name: limit
          schema:
            default: 25
            description: Page size.
            format: int64
            maximum: 100
            minimum: 1
            type: integer
        - description: Page offset.
          explode: false
          in: query
          name: offset
          schema:
            default: 0
            description: Page offset.
            format: int64
            maximum: 10000
            minimum: 0
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountingProfileListHumaBody'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Forbidden
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Internal Server Error
        '503':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Service Unavailable
components:
  schemas:
    AccountingProfileListHumaBody:
      additionalProperties: false
      properties:
        data:
          description: >-
            Page of posting configurations, newest first; always present, empty
            slice when none match.
          items:
            $ref: '#/components/schemas/AccountingProfileReadHumaBody'
          type:
            - array
            - 'null'
      required:
        - data
      type: object
    Detail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Stable, machine-readable domain error code scoped to the emitting
            service (format: <SERVICE>-NNNN).
          type: string
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
        upstream:
          $ref: '#/components/schemas/Upstream'
          description: >-
            RFC 9457 extension member: the error a proxied third-party provider
            reported. Absent unless the emitting service explicitly surfaced
            one.
      type: object
    AccountingProfileReadHumaBody:
      additionalProperties: false
      properties:
        accountingMode:
          description: Whether the product recognizes on an accrual or a cash basis.
          examples:
            - accrual
          type: string
        createdAt:
          description: >-
            Creation timestamp (RFC3339, UTC). NOT the day the chart takes
            force: a chart created in March to govern from July is created
            before, and governs after, one created in May that governs from
            June.
          examples:
            - '2026-06-14T03:00:00Z'
          type: string
        effectiveFrom:
          description: >-
            First civil day (YYYY-MM-DD) this chart governs, always a month
            start. The chart in force on a day is the one with the greatest
            effectiveFrom at or below it; a posting is booked against the chart
            in force for the competência it belongs to, never the day the run
            happened. Charts predating dated configuration read 1900-01-01,
            because each was the only chart its version ever had.
          examples:
            - '2026-07-01'
          type: string
        eventTypes:
          description: >-
            The business events this profile has a posting rule for, in rule
            order; always present, empty when none. A product version missing
            the event you expect is configured but will not post it.
          items:
            type: string
          type:
            - array
            - 'null'
        id:
          description: Accounting profile identifier (uuid).
          examples:
            - 550e8400-e29b-41d4-a716-446655440004
          type: string
        loanProductVersionId:
          description: >-
            Loan product version (uuid) this chart configures. A version owns a
            chain of charts ordered by effectiveFrom.
          examples:
            - 550e8400-e29b-41d4-a716-446655440005
          type: string
        missingEventTypes:
          description: >-
            The REQUIRED business events this profile has no posting rule for;
            always present, empty when the profile is complete. Creation refuses
            an incomplete profile today, so a non-empty list means a profile
            predating that rule: it will silently skip the ledger postings for
            the events named here. Optional events (provision, tax, assignment,
            refinance) are never listed.
          items:
            type: string
          type:
            - array
            - 'null'
        postingRuleCount:
          description: >-
            How many posting rules the profile holds. Zero means the profile
            exists but posts nothing.
          examples:
            - 2
          format: int64
          type: integer
      required:
        - id
        - loanProductVersionId
        - accountingMode
        - postingRuleCount
        - eventTypes
        - missingEventTypes
        - effectiveFrom
        - createdAt
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
    Upstream:
      additionalProperties: false
      properties:
        code:
          description: The upstream provider's own error code, verbatim.
          examples:
            - E4001
          type: string
        message:
          description: >-
            The upstream provider's own error message, verbatim (bounded, never
            its raw response body).
          examples:
            - account not found at provider
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      description: JWT bearer token issued by the identity provider.
      scheme: bearer
      type: http

````