Update Test Run Instance
Updates a single test run instance - its execution status, the remarks logged against it, and the user it is assigned to. All body fields are optional; send only the fields you want to change. Retrieve the test_instance_id from GET /api/v1/test-run/instances/{test_run_id}. To set assignee you need the numeric user ID, which you can look up with the "Get All Users" API in the User Management section of the API documentation.
Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Path Parameters
ID of the test run instance to update.
Body
application/jsonExecution status to set on the test run instance.
Remarks logged against the instance. Accepts HTML markup - the Test Manager UI renders this as rich text, so wrap plain text in a tag such as <p>.
User ID of the assignee. This is the LambdaTest user ID, not an email or username, and it is not shown in the Test Manager UI. Look up the users in your organization with the "Get All Users" API in the User Management section of the API documentation (https://swagger-api-support.lambdatest.com/user_management/index.html#/Users/getAllUsers), then pass the id of the desired user from that response here.
Response
application/jsonOK
"Test Run Instance updated successfully""Success"