create_case
Generate a new test case by providing a unique code and test case details, enabling efficient test case management within the QASE test management platform.
Instructions
Create a new test case
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | ||
testCase | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"type": "string"
},
"testCase": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"code",
"testCase"
],
"type": "object"
}