I'm testing out the Azure Boards rest API. I can currently create, delete and get items successfully, however I can't seem to move them between columns.
This is my request
https://{{AzureBoardsToken}}@{{AzureBoardsPath}}/_apis/wit/workitems/8907?api-version=6.0-preview.3
with a payload of
[
{
"op": "move",
"path": "{no idea what to put here}",
"from": "{no idea what to put here}",
"value": "{not sure if this is relevant for this operation}"
}
]
I don't find the documentation particularly useful as it assumes you know what those properties mean and where to get them.
Any help would be highly appreciated! The idea is to then integrate it in nodejs

