Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Binary file not shown.
1 change: 1 addition & 0 deletions src/pages/bru-cli/commandOptions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ bru run -h
| `--bail` | Stop execution after a failure of a request, test, or assertion |
| `--tags [string]` | Only run requests that have ALL of the specified tags (comma-separated) |
| `--exclude-tags [string]` | Skip requests that have ANY of the specified tags (comma-separated) |
| `--show-progress` | Display progress during collection execution |

### SSL & Security options

Expand Down
15 changes: 15 additions & 0 deletions src/pages/bru-cli/runCollection.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,18 @@ You can combine include and exclude filters:
```bash copy
bru run --tags=smoke,sanity --exclude-tags=skip,draft
```

### Progress Display

To see real-time progress during collection execution, use the `--show-progress` flag:

```bash copy
bru run --show-progress
```

This displays a formatted table showing:
- Request status (running, completed, failed)
- Response times
- Test results
- Overall progress

12 changes: 12 additions & 0 deletions src/pages/send-requests/REST/rest-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,15 @@ Once you create the new request, you can execute it by clicking the arrow button
In Bruno, the **GET** method is set as the default HTTP method for new requests. However, you can select other HTTP methods (such as **POST**, **PUT**, **DELETE**, etc.) based on your API requirements to send data.

![various-http-method](/screenshots/send-request/rest/various-http-method.webp)

## Custom HTTP Methods

Bruno supports custom HTTP methods beyond the standard ones (GET, POST, PUT, DELETE, etc.). This is useful for APIs that use non-standard methods like Vault's LIST method or other custom protocols.

### Adding a Custom HTTP Method

1. **Expand the HTTP method dropdown** in the request pane
2. Click **"Add Custom"** from the dropdown options
3. **Type your custom method name** in the input field (e.g., `LIST`, `PATCH`, `SEARCH`)

![custom-http-method](/screenshots/send-request/rest/custom-http-methods.webp)