get_test_run_result_statuses
Retrieve configured test result statuses for a project to assign appropriate outcomes to test cases during execution.
Instructions
Get list of Result Statuses configured for a project. These statuses are used when assigning results to Test Cases.
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"
}