Hello,
I'm trying to create WorkItem in specific Swimlane in Azure DevOps.
It seems possible with Azure DevOps Rest API - as described here: https://stackoverflow.com/questions/58862961/azure-devops-rest-apis-for-swimlane
But Update WorkItem step does not understna those add operations or I'm using it wrong.
I'm using field "Other Fields".
Tried multiple different json values like:
{ "op": "add", "path": "/fields/WEF_6623ED31B8E04C778FB1129D3239B1A7_Kanban.Lane", "value": "Lane for product team" }
The answer is always - no field path found.
When I'm using System. Swimlane value - it responds with ReadOnly error.
I was able to solve this with WorkItem Update step as follows (column names and swimlane should be your own (aka paths) - from WorkItem properties on your board)
[{"op": "add", "path" : "/fields/WEF_02759435526B4C0896C6A3483D08CFFD_Kanban.Lane", "value":"On-Call"},{"op": "add", "path" : "/fields/WEF_02759435526B4C0896C6A3483D08CFFD_Kanban.Column", "value":"Queued"}]
Can you share how you have added this in the "Other Fields"?
User | Count |
---|---|
88 | |
39 | |
23 | |
20 | |
16 |
User | Count |
---|---|
128 | |
50 | |
48 | |
35 | |
26 |