I want to update an existing issue custom data field value in any of my projects, but cant find a way to update a custom field of an issue via the API. the closest i got is to make this request:
PUT request to /3/app/field/customfield_id/value
my request is body is
{
"updates": [
{
"issueIds": [
ISSUE-ID
],
"value": THEVALUEIWANTTOPUT
}
]
}
But i’m getting back [400] This API works only with fields provided by Forge apps.
i’m kinda new to JIRA but just trying to do a simple information PUT
(I have a webhook with JQL filter that sends the data I want to external automation platform, i translate the data and want to put back different set of data in a different custom field)
How can I do it? is there any PUT request I can make that wont result with 400 only works with forge?
i’m using Jira Cloud Platform.