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

# Post the non-bank opening

> Completes every per-account opening draft with an entered statement, then flips the draft opening journal entry to POSTED and completes the INITIAL_BOOKS reconciliation. An empty draft completes with no journal entry. Reversible only via /opening/reopen (+ per-account reopen).



## OpenAPI

````yaml /openapi.json post /api/reconciliations/opening/complete
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/opening/complete:
    post:
      tags:
        - Reconciliation
      summary: Post the non-bank opening
      description: >-
        Completes every per-account opening draft with an entered statement,
        then flips the draft opening journal entry to POSTED and completes the
        INITIAL_BOOKS reconciliation. An empty draft completes with no journal
        entry. Reversible only via /opening/reopen (+ per-account reopen).
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  reconciliationId:
                    type: number
                  journalEntryId:
                    type: number
                    nullable: true
                  openingEquityPlug:
                    type: number
                required:
                  - reconciliationId
                  - journalEntryId
                  - openingEquityPlug
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````