update_plan
Modify an existing test plan by updating its code, title, description, or associated test cases using QASE MCP Server integration.
Instructions
Update an existing test plan
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cases | No | ||
code | Yes | ||
description | No | ||
id | Yes | ||
title | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cases": {
"items": {
"type": "number"
},
"type": "array"
},
"code": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "number"
},
"title": {
"type": "string"
}
},
"required": [
"code",
"id"
],
"type": "object"
}