Get Conversation / Note using API
I'm trying to get the notes/conversations of a certain ticket using curl
I found that there wasn't any documentation on this even though there was one about POSTing notes.
curl -u user@yourcompany.com:test -H "Content-Type: application/json" -X POST -d '{ "helpdesk_note": { "body":"Hi Hulk, Still Angry", "private":false }}'http://domain.freshdesk.com/helpdesk/tickets/141/conversations/note.json
I tried this
curl -u apikey:test -H "Content-Type: application/json" -X GET http://domain.freshdesk.com/helpdesk/tickets/11/conversations/note.json
which unfortunately gives me an access denied.
How should I go about doing this?