I tried to update story point in JIRA using the following API
$data = [
'update' => [
'Story Points' => [
['set' => (int) $storyPoints]
]
]
];
$url = "/rest/api/3/issue/{$issueKey}";
But I got the error as follows,
Story Point Update Failed: Client error: resulted in a `400 Bad Request` response: {"errorMessages":[],"errors":{"Story Points":"Field 'Story Points' cannot be set. It is not on the appropriate screen, o (truncated...)
You need to associate Story Points with the screen to resolve this issue.
As Project Admin,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.