Back to QMetry All Products Help Page
How to update the Test Case Type of Existing Test Cases? (Cloud)
This article is intended for users trying to update the Test Case type of Test Cases (Manual/Automated) in the QMetry Test Management for Jira (QTM4J) app.
Manual Test Case:
Automated Test Case:
To update the Test Case Type from Manual to Automated or vice versa, use the Open API detailed below:
Open API Documentation
Refer to this guide to generate an Open API Key: Generate API Key
Update Process
Manual to Automated:
Set the
isAutomatedparameter totruein the request body to update a Test Case from Manual to Automated.Sample Request Body:
{ "isAutomated": true }
Automated to Manual:
Set the
isAutomatedparameter tofalsein the request body to update a Test Case from Automated to Manual.Sample Request Body:
{ "isAutomated": false }
Back to QMetry All Products Help Page