Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to create an issue in JIRA with JIRA REST API. 'Reporter is required' error message is thrown

peteradams74185 February 25, 2020

While trying to create an issue in JIRA using the REST API with the tool postman, the below error message is received.

{    "errorMessages": [],    "errors": {        "reporter""Reporter is required."    }}

Body used in Post :

{
"fields": {
"project":
{
"key": "IT"
},
"summary": "Test request creation.",
"description": "Creating of an issue using project keys and issue type names using the REST API",
"issuetype": {
"name": "Bug"
},
"reporter":{"name":"freshinstall06"}
}
}

----------------

Modify reporter permission is given for any logged in user.

1 answer

0 votes
Sushant Chaudhary
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 25, 2020

@peteradams74185 ,

reporter is user object, and all name references for such an object is removed from JIRA.
https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/

peteradams74185 February 25, 2020

THis is helpful for me.

Suggest an answer

Log in or Sign up to answer