> For the complete documentation index, see [llms.txt](https://webside.gitbook.io/webside/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://webside.gitbook.io/webside/api/debuggers/post.md).

# Create a debugger

Create a debugger on a given process. The process is identified thru the evaluation (ID) that created it.

**URL**: `/debuggers`

**Method**: `POST`

**Payload**: an `evaluation` (the ID obtained when creating the evaluation):

```json
{
	"evaluation": "string"
}
```

## Success Responses

**Code** : `200 OK`

**Payload**:

```json
{
	"id": "string",
	"description": "string"
}
```
