get_test_run_configuration_groups
Retrieve configuration groups and their options for a project to set up test runs in Zebrunner Test Case Management.
Instructions
Get list of Configuration Groups and their Options for a project. These are used to configure Test Runs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | formatted |
project | Yes | Project alias ('web', 'android', 'ios', 'api') or project key |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "formatted",
"description": "Output format",
"enum": [
"raw",
"formatted"
],
"type": "string"
},
"project": {
"anyOf": [
{
"enum": [
"web",
"android",
"ios",
"api"
],
"type": "string"
},
{
"type": "string"
}
],
"description": "Project alias ('web', 'android', 'ios', 'api') or project key"
}
},
"required": [
"project"
],
"type": "object"
}