Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Get Test Steps which are linked with Test Case

GET /testrun/{testRunIssueId}/testcase/{testCaseIssueId}/teststep

Description

Get Test Steps which are linked with Test Case.


Parameters

TypeNameDescriptionRequiredSchemaDefault

PathParameter

testRunIssueId

Issue id of test run

true

integer (int64)


QueryParameter

testScenarioIssueId

Issue id of test scenario. This parameter is true if a Test case is linked to Test Scenario.

false

integer (int64)


PathParameter

testCaseIssueId

Issue id of test case

true

integer (int64)


QueryParameter

testCaseSeqNo

Sequence number of test case within test scenario or Story or Test Run (whichever it is directly linked with). 

true

integer (int32)


QueryParameter

storyIssueId

Issue id of test story. This parameter is true if a Test case is linked to Story. or Test cases is linked to Test Scenario which then linked to Story.

false

integer (int64)


QueryParameter

maxResults

Maximum number of test cases to return in each call. Maximum possible value is 50200. By default maximum value 50 values will be returned.

false

integer (int32)

50

QueryParameter

offset

Index of the first test case details needed to be fetched.

false

integer (int32)

0

QueryParameter

resultId

Id of execution result.

false

integer (int32)


QueryParameter

expand

Possible values are metadata, teststep and defect

false

string




Responses

HTTP CodeDescriptionSchema

200

Successful operation.

No Content

400

Returned if the given request data is invalid.

No Content

403

Returned if the currently authenticated user does not have permission to get data.

No Content

404

Returned if required request data is missing.

No Content

500

Returned if there is some problem in fetching data.

No Content



Consumes

  • application/json


Produces

  • application/json


Tags

  • Test Run

...