Is there any way to update a note? I've passed back the note id but it creates a new note.
Example code:
post_headers = {'Content-Type': 'application/json','Accept': 'application/json','Authorization': 'Bearer '+authCode}
new_note_json = {"entry": {"party":{"id":999999999},"type":"note",
"id":"999999999", "content":"Note Title - 20/05/2015\nUpdated note
content"}}}
response =
requests.post(url,headers=post_headers,data=new_note_json)