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

# Delete

> Allows the client to delete open intelligence about an endpoint.

## Overview

Allows the client to delete open intelligence about an endpoint. The intelligence information must have been created by the same agent, on the same domain to be able to be deleted.

## HTTP request

`POST /Agent/Intelligence/Delete`

## Authentication

Requires a valid JWT bearer token.

## Request (JSON)

```json theme={null}
{
	"objectId": Required(Str(PObjectId))
}
```

## Input parameters

| Parameter | Description                                                            |
| --------- | ---------------------------------------------------------------------- |
| PObjectId | The Object ID of the information, as it was returned when creating it. |

## Response (JSON)

```json theme={null}
{
}
```

## Notes

This endpoint uses the request schema notation described in [Pattern matching](/guides/pattern-matching).
