Hello guys,
i have a custom workflow and need to set a customfield on a specific transition, because the field is only editable during this transition.
But everytime i try to call the transition via REST, i get the error message
"errors": {
"customfield_12460": "Field 'customfield_12460' cannot be set. It is not on the appropriate screen, or unknown."
}
This is my payload and i tried also with "update" instead of "fields". The TransitionSreen has several tabs and the customfield is on the second one, but i don't know how to address the tab in my payload
{
"fields": { "customfield_12460": {"value": "2020-09- 08T17:17:00.000+0200"}},
"transition": {"id": 201}
}
After hours of searching for similar issues i could not solve this problem...