Using the REST API I can create, update and remove documents. But how do I set a document’s tag using Rest Api? Already tried to do it sending this Json in the create method (I’m trying to add a tag to a task):
{
"subject": "Set a tag from API",
"tag": "Service Request"
}
And this one in the update method:
{
"tag": "Service Request"
}