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

# Delete Pixel

> Delete a tracking pixel

<ParamField path="pixelId" type="string" required>
  Pixel identifier
</ParamField>

## Access

* Permission: `pixels:delete`

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.linquid.io/api/pixels/pixel_abc123 \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "deleted": true
    }
  }
  ```
</ResponseExample>

## Common Errors

* `404`: pixel not found
