update_manual_test_case
Update an existing manual test case by modifying fields like steps, status, priority, and linking Jira issues.
Instructions
Update an existing manual test case. Use this to modify test case details, steps, status, priority, or any other fields. Provide only the fields you want to update in the updates object. To add comments, pass updates.comments as an array of strings — each becomes a new comment (PAT owner is author). To link Jira issues, pass updates.issues as an array of ticket keys (e.g. ['PROJ-123']); the server looks each up in the project's connected Jira and saves with title+url, or as a plain text stub when Jira isn't connected or the ticket isn't found (same fallback as the UI).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| caseId | Yes | Test case ID (Required). Can be internal _id or human-readable ID like 'TC-123'. | |
| updates | Yes | Object containing the fields to update. Can include: name, description, steps, status, priority, severity, type, layer, behavior, preconditions, postconditions, automationStatus, tags, flags, attachments, customFields, etc. | |
| projectId | Yes | Project ID (Required). The TestDino project identifier. |