Hi,
Would anyone be able to provide an example of a PUT request that updates a category attribute on a document? My below attempt results in a 500 internal server error so it appears to be structured incorrectly.
$http.put('/contentserver/api/v1/nodes/2614353/categories/2621276?{2621276}_{2}=MyVal');
In the above 2614353 is the id (document) and 2621276 is the category_id. The attribute i wish to update is #2.
API - PUT /nodes/{id}/categories/{category_id}/
Thanks in advance