JiraPS
JiraPS copied to clipboard
Please Add possibility to add Worklog during Add-JiraIssueTransition
Below is working POST example to jira REST method with body
POST : /api/2/issue/{issueIdOrKey}/transitions
{
"update": {
"comment": [
{
"add": {
"body": "Bug has been fixed."
}
}
],
"worklog": [
{
"add": {
"timeSpent": "60m",
"started": "2011-07-05T11:05:00.000+0000"
}
}
]
} ,
"transition" : {
"id" : "5"
}
}
Is your feature request related to a problem? Please describe.
I want to resolve an issue, however there is a screen with Time Spent field required on it
Description
I would like additional parameter like -Worklog 15