Skip to main content

Hi,

Is it possible to add public comment to a ticket via the FreshService API? If not, what is the best workaround?

Thanks,

Sam

HI.

Yes, totally.

Please refer to the following example in the documentation:

https://api.freshservice.com/#create_a_note

 

P.S.: Just ensure to set private to false for the note to be public.

curl -v -u user@yourcompany.com:test -H "Content-Type: application/json" -X POST -d '{ "body":"Hi tom, Still Angry", "private":false }' 'https://domain.freshservice.com/api/v2/tickets/265/notes'

 

 

Hope this helps.

 

Sincerely.

Elvis.


@eeha0120  Thanks!

I feel silly. It is in the API documentation. I completed missed it. Thanks for pointing that out. Much appreciated. 

Sam