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

# Delete a reconciliation match

> Deletes a reconciliation match and resets all associated records to unreconciled status.



## OpenAPI

````yaml /openapi.json delete /reconciliation_matches/{id}
openapi: 3.1.0
info:
  title: End Close API
  description: REST API is used to interact with the End Close platform.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.endclose.com/v1
security:
  - ApiKeyAuth: []
paths:
  /reconciliation_matches/{id}:
    delete:
      summary: Delete a reconciliation match
      description: >-
        Deletes a reconciliation match and resets all associated records to
        unreconciled status.
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Match deleted and records unreconciled
        '404':
          description: Match not found
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````