Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/api/runs.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,20 @@ We encourage you to leverage our webhook support for a more efficient and respon
|---|---|
| id (required) string | The ID of the robot to run.

#### Request Body (Optional)

The request body is optional and allows you to specify additional parameters for the robot run:

```json
{
"mode": "normal" | "bulk"
}
```

| Property | Type | Required | Description |
|---|---|---|---|
| mode | string | No | Extraction mode to use for robots with deep extraction configured. Only applicable when the robot has deep extraction enabled. Choose `bulk` to process all configured deep extraction URLs, or `normal` to run the original robot only. Defaults to the robot's configured mode if not specified.

#### Responses

| Code | Description | Media Type
Expand Down