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

# Delete Data

> Using the DELETE method, you can remove rows.

To delete rows in a table, use the `DELETE` verb plus Horizontal Filtering on the primary keys(s). For instance deleting a contact:

```bash theme={null}
curl "https://integration.getmateo.com/api/v1/contact?id=eq.123" \ -X DELETE
```

```bash theme={null}
HTTP/1.1 204 No Content
```

No response body will be returned by default but you can add a `select` query parameter to select the columns that should be returned:

```bash theme={null}
curl "https://integration.getmateo.com/api/v1/contact?id=1234&select=id,full_name" \
 -X DELETE -H "Content-Type: application/json"
```

```bash theme={null}
HTTP/1.1 200 OK
```

```json theme={null}
{
  "id": 1234,
  "full_name": "Max Mustermann"
}
```
