bruno_run_request
Execute specific API requests from Bruno collections to test endpoints, manage environments, and generate test reports for validation and CI/CD integration.
Instructions
Run a specific request from a Bruno collection
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| collectionPath | Yes | Path to the Bruno collection | |
| requestName | Yes | Name of the request to run | |
| environment | No | Name or path of the environment to use (optional) | |
| envVariables | No | Environment variables as key-value pairs (optional) | |
| reporterJson | No | Path to write JSON report (optional) | |
| reporterJunit | No | Path to write JUnit XML report for CI/CD integration (optional) | |
| reporterHtml | No | Path to write HTML report (optional) | |
| dryRun | No | Validate request configuration without executing HTTP call (optional) | 
Input Schema (JSON Schema)
{
  "properties": {
    "collectionPath": {
      "description": "Path to the Bruno collection",
      "type": "string"
    },
    "dryRun": {
      "description": "Validate request configuration without executing HTTP call (optional)",
      "type": "boolean"
    },
    "envVariables": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "Environment variables as key-value pairs (optional)",
      "type": "object"
    },
    "environment": {
      "description": "Name or path of the environment to use (optional)",
      "type": "string"
    },
    "reporterHtml": {
      "description": "Path to write HTML report (optional)",
      "type": "string"
    },
    "reporterJson": {
      "description": "Path to write JSON report (optional)",
      "type": "string"
    },
    "reporterJunit": {
      "description": "Path to write JUnit XML report for CI/CD integration (optional)",
      "type": "string"
    },
    "requestName": {
      "description": "Name of the request to run",
      "type": "string"
    }
  },
  "required": [
    "collectionPath",
    "requestName"
  ],
  "type": "object"
}