How to update the Test Case Type of Existing Test Cases? (Cloud)

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:

image-20241212-085112.png

Automated Test Case:

image-20241212-084950.png

To update the Test Case Type from Manual to Automated or vice versa, use the Open API detailed below:

Update Process

  1. Manual to Automated:

  • Set the isAutomated parameter to true in the request body to update a Test Case from Manual to Automated.

    • Sample Request Body:

      • { "isAutomated": true }

  1. Automated to Manual:

  • Set the isAutomated parameter to false in the request body to update a Test Case from Automated to Manual.

    • Sample Request Body:

      • { "isAutomated": false }