> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developers.brevo.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.brevo.com/_mcp/server.

### Use the log deletion endpoint to start a deletion job.

Define the recipient address to erase from the database and call the [transactional deletion endpoint](/reference/delete-an-smtp-transactional-log) with the following properties.

```
curl --request DELETE \
     --url https://api.brevo.com/v3/smtp/log/recipient@brevo.com \
     --header 'accept: application/json'
```

### Execute the call.

After you specify the address and execute the call, the response returns a `process_id` indicating that an asynchronous deletion job is running.

Optional: retrieve the status of the asynchronous job by querying the "[Return the informations for a process](/reference/get-process)" endpoint.

```
curl --request GET \
     --url https://api.brevo.com/v3/processes/352351 \
     --header 'accept: application/json'
```

### Verify the actions.

Option 1: once the deletion completes, verify it by opening the [logs view](https://app-smtp.brevo.com/log). Type the recipient address — the result set should be 0.

Option 2: verify the deletion by querying the following [endpoint](/reference/get-transac-emails-list).