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

# Delete deal

> Delete a deal by its ID.

<Warning>
  **Deprecated:** This is a **v1** endpoint. It will continue to work, but we recommend migrating to
  the [v2 equivalent](/api-reference) for improved REST compliance (correct HTTP status codes,
  consistent response envelopes, and hyphenated URLs).
</Warning>

<Info>Replace `{your-subdomain}` with your workspace's subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>


## OpenAPI

````yaml /bundled-v1/deals.yaml DELETE /deals/{id}
openapi: 3.0.3
info:
  title: NeetoCRM Deals APIs
  version: 1.0.0
servers:
  - description: NeetoCRM APIs
    url: https://{your-subdomain}.neetocrm.com/api/external/v1
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
tags:
  - name: Deals
    description: APIs to manage deals in your workspace.
paths:
  /deals/{id}:
    delete:
      tags:
        - Deals
      summary: Delete deal
      description: Delete a deal by its ID.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
        - name: id
          in: path
          required: true
          description: >-
            The ID of the deal to delete. You can get the deal `id` by listing
            all deals using our [List all deals](/api-reference-v1/deals/list)
            API.
          schema:
            type: string
      responses:
        '200':
          description: Deal deleted successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/deal_delete_response'
components:
  parameters:
    api_key_header:
      in: header
      name: X-Api-Key
      description: >-
        Use the X-Api-Key header to provide your workspace API key. Refer to
        [Authentication](/getting-started/authentication) for more information.
      required: true
      schema:
        type: string
  schemas:
    deal_delete_response:
      type: object
      properties:
        message:
          type: string
      example:
        message: Deal deleted successfully

````