Deprecated APIs in v2.3

Get Test Run Execution Details

POST /testrun/{testRunIssueId}/testexecution

Description

Get test run execution details.

Parameters

Type

Name

Description

Required

Schema

Default

PathParameter

testRunIssueId

Issue id of test run.

true

integer (int64)


BodyParameter

body

TestRunExecutionRequest Object

true

TestRunExecutionRequest

Response

HTTP CodeDescriptionSchema
200Successful operation.No Content
400Returned if the given test run issue id is invalid.No Content
403Returned if the currently authenticated user does not have permission view test run execution details.No Content
404Returned if the assignee or test run issue id is not provided.No Content
500Returned if exception occurred while fetching test run execution details.No Content

Consumes

  • application/json

Produces

  • application/json

Tags

  • Test Run

Get test cases/scenarios associated with test run

POST /testrun/testscenario


Description

Get test cases/scenarios associated with given test run. You can further filter the list by story, search text and assignee.

Parameters

Type

Name

Description

Required

Schema

Default

BodyParameter

body

Request data

false

TestRunRequest


Responses

HTTP Code

Description

Schema

200

Successful operation.

No Content

400

Returned if the given test run issue id is invalid.

No Content

403

Returned if the currently athenticated user does not have permission to retrieve data.

No Content

404

Returned if the required request data is missing.

No Content

500

Returned if exception occured in fetching data.

No Content

Consumes

  • application/json

Produces

  • application/json

Tags

  • Test Run

Clean up test run

DELETE /testrun/{testRunIssueId}/discard


Description

Remove test case or test scenario from given test run which is either removed or unlinked.


Parameters

Type

Name

Description

Required

Schema

Default

PathParameter

testRunIssueId

Issue Id of Test Run

true

integer (int64)



Responses

HTTP Code

Description

Schema

200

Successful operation

No Content

403

Returned if user does not have permission to do clean up.

No Content

500

Returned if exception occured while clean up.

No Content

Consumes

  • application/json

Produces

  • application/json

Tags

  • Test Run