Hi @Volantis Jan
The issue with your request is that the fields
property does not belong inside the patch request body. In Azure DevOps REST API, each field must be added individually with its proper reference name.
[
{
"op": "add",
"path": "/fields/System.Title",
"value": "Sample Task"
},
{
"op": "add",
"path": "/fields/Custom.VOLAN",
"value": "<YourValue>"
}
]
By using above Request Body I was successfully set the Custom Field Value as shown below:
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.