Hi,
We have custom fields added to a category, and the category applied to a node.
When I get those fields and their information I am using the basic nodes rest call:
'/otcs/llisapi.dll/api/v1/nodes/' + nodeId + '/nodes'
And in this case, one of the fields is named "doc type". Per that call, I find the field identified as "wnf_att_385x_k". Ok, display fine.
But then I want to be able to update that field per REST calls as well. And the closest service I can find for that, is the category node:
'/otcs/llisapi.dll/api/v1/nodes/" + nodeId + "/categories/' + catId
However, when calling that node to check that it has the field I need to update.. it does, but under a different identifier: "97244_17".
Is that the correct call to use for a put to update the field infomration? And if so, is there a good way to match up the field as shown from the Nodes node, and the Categories node?
Thanks
Frank