You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I've created a forge app. When I test in development in can successfully create an issue and set the reporter field. When I run it in production it fails with 400.
```
{"errorMessages":[],"errors":{"reporter":"Field 'reporter' cannot be set. It is not on the appropriate screen, or unknown."}}%
I'm at a loss now as to why this doesn't work- compounded by the fact that it works in dev but not in prod.
I'm calling the api like so and setting the fields with
reporter being set as:
reporter: {
id: <account-id>
},
```
await api.asApp().requestJira(route`/rest/api/3/issue`, {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify(fields)
});
```