Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
POSTcom.easesolutions.jira.plugins.testmanagement/1.0/plan/prjKeyCreate a new testplan.
GETcom.easesolutions.jira.plugins.testmanagement/1.0/plans/prjKeyGet all testplans for a given project.
GETcom.easesolutions.jira.plugins.testmanagement/1.0/plans/prjKey/planGet a specific testplan.



Anchor
1
1

Panel
titleColor#FFFFFF
titleBGColor#6c809a
titlePOST /com.easesolutions.jira.plugins.testmanagement/1.0/plan/{prjKey}
Code Block
languagejava
titleExample Response
collapsetrue
{
  	"prjKey": "PRJ",
  	"project": 10100,
  	"description": "An example testplan",
  	"configuration": 0,
  	"id": 12,
  	"name": "Example Plan",
  	"copying": false,
  	"copyFailed": false,
  	"testCount": 0,
  	"stepCount": 0
}



Create a new testplan.



PARAMETERS

Section
Column
width30%

prjKey*

name*

desc

cfg

Column
width70%

The project key.

A name for the testplan.

A description for the testplan.

The id of a configuration within the specified project.

Anchor
2
2

Panel
titleColor#FFFFFF
titleBGColor#6c809a
titleGET /com.easesolutions.jira.plugins.testmanagement/1.0/plans/{prjKey}
Code Block
languagejava
titleExample Response
collapsetrue
[
  	{
    	"prjKey": "PRJ",
    	"project": 10100,
    	"description": "An example testplan",
    	"configuration": 0,
    	"id": 12,
    	"name": "Example Plan",
    	"copying": false,
    	"copyFailed": false,
    	"testCount": 0,
		"stepCount": 0
  	},
	{
    	"prjKey": "PRJ",
    	"project": 10100,
    	"description": "A second testplan",
    	"configuration": 0,
    	"id": 12,
    	"name": "Another Plan",
    	"copying": false,
    	"copyFailed": false,
    	"testCount": 0,
    	"stepCount": 0
  	}
]



Get all testplans for a given project.



PARAMETERS

Section
Column
width30%

prjKey*

Column
width70%

The project key.

Anchor
3
3

Panel
titleColor#FFFFFF
titleBGColor#6c809a
titleGET /com.easesolutions.jira.plugins.testmanagement/1.0/plans/{prjKey}/{plan}
Code Block
languagejava
titleExample Response
collapsetrue
{
   	"prjKey": "PRJ",
    "project": 10100,
    "description": "An example testplan",
    "configuration": 0,
    "id": 12,
    "name": "Example Plan",
    "copying": false,
    "copyFailed": false,
    "testCount": 0,
    "stepCount": 0
}



Get a specific testplan.



PARAMETERS

Section
Column
width30%

prjKey*

plan*

Column
width70%

The project key.

The id of the plan.