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)
});
```
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.