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.
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/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found the answer helpful from this link.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.