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

# Delete lead

> Delete a lead submission

## Endpoint

```
DELETE https://api.partnero.com/v1/leads/{id}
```

## Path Parameters

| Parameter | Type    | Required | Description      |
| --------- | ------- | -------- | ---------------- |
| `id`      | integer | Yes      | Lead's unique ID |

## Request

```bash cURL theme={null}
curl --location --request DELETE 'https://api.partnero.com/v1/leads/44' \
  --header 'Authorization: Bearer YOUR_API_KEY'
```

## Response

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "status": 1
  }
  ```
</ResponseExample>

<Warning>
  Deleting a lead is permanent. Consider using [reject](/api-reference/leads/convert#reject-a-lead) to preserve the lead record while marking it as rejected.
</Warning>
