bruno_get_request_details
Inspect API request details including method, URL, headers, body, and tests without executing the request to analyze and validate collection structure.
Instructions
Get detailed information about a specific request without executing it (method, URL, headers, body, tests)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collectionPath | Yes | Path to the Bruno collection | |
| requestName | Yes | Name of the request to inspect |
Input Schema (JSON Schema)
{
"properties": {
"collectionPath": {
"description": "Path to the Bruno collection",
"type": "string"
},
"requestName": {
"description": "Name of the request to inspect",
"type": "string"
}
},
"required": [
"collectionPath",
"requestName"
],
"type": "object"
}