I have created a new node using Services 3 module successfully, the code is below
{ "type":"page", "title":"New test page", "taxonomy": { "tid" :"367928" } }
Configuration:
Drupal version = 6.26,
url = serviceurl/node,
App = Postman application in chrome,
Method = POST,
data = json.
But when i tried to edit the taxonomy term of the node using same format as below , its not working
url = serviceurl/node/node-id,
Method = PUT,
data = json.
{ "type":"page", "title":"New updated title of the Page", "taxonomy": { "tid" :"367930" } }
When I checked the node, the title is getting updated where as the taxonomy term remains the same. I searched a lot on the net, but could not find any solution. Can anyone please help to fix this issue.