get_automation_states
Retrieve available automation states with names and IDs for specific projects to manage test execution workflows in Zebrunner Test Case Management.
Instructions
๐ง Get available automation states for a project (names and IDs)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
project | Yes | Project alias (web/android/ios/api), project key, or project ID |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Output format",
"enum": [
"json",
"markdown"
],
"type": "string"
},
"project": {
"anyOf": [
{
"enum": [
"web",
"android",
"ios",
"api"
],
"type": "string"
},
{
"type": "string"
},
{
"type": "number"
}
],
"description": "Project alias (web/android/ios/api), project key, or project ID"
}
},
"required": [
"project"
],
"type": "object"
}