get_suite
Retrieve a specific test suite from the QASE test management platform by providing its unique ID and project code, enabling efficient test suite management.
Instructions
Get a specific test suite
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | ||
id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"type": "string"
},
"id": {
"type": "number"
}
},
"required": [
"code",
"id"
],
"type": "object"
}