Get create issue metadata
GET
/rest/api/3/issue/createmeta
Issues
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://jira.local:8080/jira/rest//rest/api/3/issue/createmeta'
Response Response Example
200 - Success
{
"projects": [
{
"self": "https://your-domain.atlassian.net/rest/api/3/project/ED",
"id": "10000",
"key": "ED",
"name": "Edison Project",
"avatarUrls": {
"16x16": "https://your-domain.atlassian.net/secure/projectavatar?size=xsmall&pid=10000&avatarId=10011",
"24x24": "https://your-domain.atlassian.net/secure/projectavatar?size=small&pid=10000&avatarId=10011",
"32x32": "https://your-domain.atlassian.net/secure/projectavatar?size=medium&pid=10000&avatarId=10011",
"48x48": "https://your-domain.atlassian.net/secure/projectavatar?pid=10000&avatarId=10011"
},
"issuetypes": [
{
"self": "https://your-domain.atlassian.net/rest/api/3/issueType/1",
"id": "1",
"description": "An error in the code",
"iconUrl": "https://your-domain.atlassian.net/images/icons/issuetypes/bug.png",
"name": "Bug",
"subtask": false,
"fields": {
"issuetype": {
"required": true,
"name": "Issue Type",
"key": "issuetype",
"hasDefaultValue": false,
"operations": [
"set"
]
}
}
}
]
}
]
}
Request
Query Params
projectIds
array[string]
optional
projectIds=10000,10001&projectIds=10020,10021
. This parameter may be provided with projectKeys
.projectKeys
array[string]
optional
projectKeys=proj1,proj2&projectKeys=proj3
. This parameter may be provided with projectIds
.issuetypeIds
array[string]
optional
issuetypeIds=10000,10001&issuetypeIds=10020,10021
. This parameter may be provided with issuetypeNames
.issuetypeNames
array[string]
optional
issuetypeNames=name1,name2&issuetypeNames=name3
. This parameter may be provided with issuetypeIds
.expand
stringÂ
optional
projects.issuetypes.fields
, which returns information about the fields in the issue creation screen for each issue type. Fields hidden from the screen are not returned. Use the information to populate the fields
and update
fields in Create issue and Create issues.Responses
Modified at 2023-07-13 03:27:27