Hi All,
We have some (working) json code made by clever predecessors to push tickets into Jira, here it is:
{
"fields": {
"project":
{
"key" : "{{$jiraproject}}"
},
"summary" : "{{$summary}}",
"description" : "{{$description}}",
"issuetype": { "name" : "Development" },
"customfield_10025" : {
"value": "{{$client}}"
},
@IF(!empty($due_date))
"duedate" : "{{$due_date}}",
@endif
"customfield_10029" : {{$total}},
"customfield_11500" : {{$dev_hours}}
}
}
I have been asked to update this with a new line so that the Destination Step is “CS Specification” instead of the default “Backlog”.
Two questions:
Thanks
Tim
If you are using the REST API, the answer is no. The issue must follow the workflow and so will be created in with the initial status of the applicable issue workflow.
You could use code to change the status after the issue is created, though.
Thanks Trudy, this is a logical solution to the issue.
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.