update_case
Modify existing test case details such as title, description, steps, severity, and tags in QASE test management platform. Ensure accurate and up-to-date test case documentation.
Instructions
Update an existing test case
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| automation | No | ||
| behavior | No | ||
| code | Yes | ||
| custom_fields | No | ||
| description | No | ||
| id | Yes | ||
| is_flaky | No | ||
| layer | No | ||
| milestone_id | No | ||
| params | No | ||
| postconditions | No | ||
| preconditions | No | ||
| priority | No | ||
| severity | No | ||
| status | No | ||
| steps | No | ||
| suite_id | No | ||
| tags | No | ||
| title | No | ||
| type | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"automation": {
"type": "number"
},
"behavior": {
"type": "number"
},
"code": {
"type": "string"
},
"custom_fields": {
"items": {
"additionalProperties": false,
"properties": {
"id": {
"type": "number"
},
"value": {
"type": "string"
}
},
"required": [
"id",
"value"
],
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"id": {
"type": "number"
},
"is_flaky": {
"type": "boolean"
},
"layer": {
"type": "number"
},
"milestone_id": {
"type": "number"
},
"params": {
"items": {
"additionalProperties": false,
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"title",
"value"
],
"type": "object"
},
"type": "array"
},
"postconditions": {
"type": "string"
},
"preconditions": {
"type": "string"
},
"priority": {
"type": "number"
},
"severity": {
"type": "number"
},
"status": {
"type": "number"
},
"steps": {
"items": {
"additionalProperties": false,
"properties": {
"action": {
"type": "string"
},
"data": {
"type": "string"
},
"expected_result": {
"type": "string"
},
"position": {
"type": "number"
}
},
"required": [
"action"
],
"type": "object"
},
"type": "array"
},
"suite_id": {
"type": "number"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
},
"type": {
"type": "number"
}
},
"required": [
"code",
"id"
],
"type": "object"
}