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

# Set the statement balance on a draft reconciliation

> Records the entered statement closing balance for one account's open draft. The difference is derived; this does not complete or lock anything.



## OpenAPI

````yaml /openapi.json patch /api/reconciliations/account-balances/{id}
openapi: 3.1.0
info:
  title: Equated API
  version: 1.0.0
  description: >-
    Agent-facing accounting API. Authenticate with a bearer token issued from
    Settings → API Tokens, or via the in-app session cookie when called from the
    web client.
servers:
  - url: https://app.equated.co
    description: API server
security: []
paths:
  /api/reconciliations/account-balances/{id}:
    patch:
      tags:
        - Reconciliation
      summary: Set the statement balance on a draft reconciliation
      description: >-
        Records the entered statement closing balance for one account's open
        draft. The difference is derived; this does not complete or lock
        anything.
      parameters:
        - schema:
            type: integer
            minimum: 0
            exclusiveMinimum: true
          required: true
          name: id
          in: path
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                userVerifiedBalance:
                  type: number
                reason:
                  type: string
              required:
                - userVerifiedBalance
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  reconciliation:
                    type: object
                    nullable: true
                    properties: {}
                    additionalProperties:
                      nullable: true
                required:
                  - reconciliation
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````