Execute test case using test case run id

QMetry 7QMetry 8
  • URL : rest/execution/runstatus/bulkupdate
  • Method : POST
  • URL : /rest/execution/runstatus/bulkupdate
  • Method : POST
Request Body
{
	"entityIDs": "5759463",
	"entityId": "5759463",
	"entityType": "TCR",
	"isAutoExecuted": 0,
	"qmTsRunId": "340477",
	"runStatusID": 16370,
	"type": "TCR"
}
Request Body
{
	"entityIDs": "3003378,3003379", 
	"entityType": "TCR", 
	"qmTsRunId": "262873", 
	"runStatusID": 5296
}
Response Body
{
    "success": true,
    "code": "CO.UPDATE_RUNSTATUS_SUCCESS",
    "data": [
        {
            "entityIDs": "5759463",
            "entityId": "5759463",
            "entityType": "TCR",
            "isAutoExecuted": 0,
            "qmTsRunId": "340477",
            "runStatusID": 16370,
            "type": "TCR",
            "tcrStatus": "16370"
        }
    ]
}
Response Body
{
    "success": true,
    "code": "CO.BULK_UPDATE_RUNSTATUS_SUCCESS",
    "message": "Status is successfully bulk updated for Count test case(s).",
    "data": [
        {
            "entityIDs": "3003378,3003379",
            "entityType": "TCR",
            "qmTsRunId": "262873",
            "runStatusID": 5296,
            "COUNT": 2,
            "lastExecuted": "04-05-2019 16:11:59",
            "tcrStatus": "5296",
            "tcrStatusAlias": "Passed",
            "executedBy": "ansari"
        }
    ]
}