Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
GETcom.easesolutions.jira.plugins.testmanagement/1.0/teststep/prjKey/issueKeyGet all teststeps for an issue.
POSTcom.easesolutions.jira.plugins.testmanagement/1.0/teststep/prjKey/issueKeyCreate a new teststep for an issue.
PUTcom.easesolutions.jira.plugins.testmanagement/1.0/teststep/prjKey/issueKey/testStepIdUpdate an existing teststep.
DELETEcom.easesolutions.jira.plugins.testmanagement/1.0/teststep/prjKey/issueKey/testStepIdDelete an existing teststep.



Anchor
1
1

Panel
titleColor#FFFFFF
titleBGColor#6c809a
titleGET /com.easesolutions.jira.plugins.testmanagement/1.0/teststep/{prjKey}/{issueKey}
Code Block
languagejava
titleExample Response
collapsetrue
[
  	{
    	"name": "Teststep 1",
    	"description": "An example teststep",
    	"expectedResult": ""
  	},
  	{
    	"name": "Teststep 2",
    	"description": "Another example teststep",
    	"expectedResult": ""
  	}
]



Get all teststeps for an issue.



PARAMETERS

Section
Column
width30%

prjKey*

issueKey*

Column
width70%

The project key.

The key of the issue containing the teststeps.

...

Panel
titleColor#FFFFFF
titleBGColor#6c809a
titlePOST /com.easesolutions.jira.plugins.testmanagement/1.0/teststep/{prjKey}/{issueKey}
Code Block
languagejava
titleExample Response
collapsetrue
{
    "name": "Teststep 1",
    "description": "An example teststep",
    "expectedResult": ""
}



Create a new teststep for an issue.



PARAMETERS

Section
Column
width30%

prjKey*

issueKey*

name*

description

expectedResult

position

Column
width70%

The project key.

The key of the issue to create a new teststep for.

A name for the teststep.

A description for the teststep.

An expected result for the teststep.

A position for the teststep.

...

Panel
titleColor#FFFFFF
titleBGColor#6c809a
titlePUT /com.easesolutions.jira.plugins.testmanagement/1.0/teststep/{prjKey}/{issueKey}/{testStepId}
Code Block
languagejava
titleExample Response
collapsetrue
{
    	"name": "Updated Teststep 1",
    	"description": "An updated teststep",
    	"expectedResult": ""
}



Update an existing teststep.



PARAMETERS

Section
Column
width30%

prjKey*

issueKey*

testStepId*

name*

description

expectedResult

position

Column
width70%

The project key.

The key of the issue containing the step to update.

The id of the teststep to update.

An updated name.

An updated description.

An updated expected result.

An updated position.

...

Panel
titleColor#FFFFFF
titleBGColor#6c809a
titleDELETE /com.easesolutions.jira.plugins.testmanagement/1.0/teststep/{prjKey}/{issueKey}/{testStepId}
Code Block
languagejava
titleExample Response
collapsetrue
"OK"



Delete an existing teststep.



PARAMETERS

Section
Column
width30%

prjKey*

issueKey*

testStepId*

Column
width70%

The project key.

The key of the issue containing the step to delete.

The id of the teststep to delete.