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

# Abandon the account's open (uncompleted) reconciliation draft

> Discards the account's open draft (inputs only, nothing posted) — undoes a 'keep as new' opening so the feed returns to unmatched. No-op if there is no open draft; a completed proof is left alone (reopen it first).



## OpenAPI

````yaml /openapi.json post /api/reconciliations/accounts/{faId}/abandon
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/accounts/{faId}/abandon:
    post:
      tags:
        - Reconciliation
      summary: Abandon the account's open (uncompleted) reconciliation draft
      description: >-
        Discards the account's open draft (inputs only, nothing posted) — undoes
        a 'keep as new' opening so the feed returns to unmatched. No-op if there
        is no open draft; a completed proof is left alone (reopen it first).
      parameters:
        - schema:
            type: integer
            minimum: 0
            exclusiveMinimum: true
          required: true
          name: faId
          in: path
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                required:
                  - ok
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````