How are you able to transition an issue that requires a validation Time Spent within Automation.
My JSON skills aren't great but am trying. Picked a few examples from Advanced field editing using JSON
A few of the fields:
tried Transition Issue w/ JSON :
{
"update": {
"customfield_11200": [{
"add": {"id":"1"}
}]
}
}
also tried to execute directly through JSON.
{
"fields": {
{issue.Time Spent("1")}
{issue.customfield_11200("10001")}
}
}
however, that fails also
Thanks,
Hi @Allen Semerdjian - Time Spent is part of a larger work log so a bit more complex than just filling in Time Spent. I believe you need something like this:
{
"update": {
"worklog" : [
{
"add": {
"timeSpent" : "5m"
}
}
]
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.