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

# Reopen the posted non-bank opening

> Returns the posted batch to an editable draft: the opening journal entry flips back to DRAFT and INITIAL_BOOKS to editable. Per-account bank openings are untouched.



## OpenAPI

````yaml /openapi.json post /api/reconciliations/opening/reopen
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/reopen:
    post:
      tags:
        - Reconciliation
      summary: Reopen the posted non-bank opening
      description: >-
        Returns the posted batch to an editable draft: the opening journal entry
        flips back to DRAFT and INITIAL_BOOKS to editable. Per-account bank
        openings are untouched.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  opening:
                    type: object
                    nullable: true
                    properties: {}
                    additionalProperties:
                      nullable: true
                required:
                  - opening
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````