Skip to end of banner
Go to start of banner

/all

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Returns all available templates to the user executing the query.

Request


https://your.jira.url/rest/projecttemplates/1.0/create-templates/all


Parameters

None

Sample request

curl -u admin:admin -X GET -H "Content-Type: application/x-www-form-urlencoded" -v http://your.jira.url/rest/projecttemplates/1.0/create-templates/all


Sample response


{
 "templateList": [
   {
     "name": "My example template",
     "guidance": "guidance note",
     "id": 2,
     "backgroundIcon": "",
     "categories": null,
     "owners": null
   },
   {
     "name": "Second template",
     "guidance": "Use this template for this",
     "id": 1,
     "backgroundIcon": "",
     "categories": null,
     "owners": null
   }
 ]
}



  • No labels