Hi all,
I’m using the endpoint add_note_to_a_ticket to create a public reply to a given ticket.
And I’m trying to use placeholders like {{ticket.requester.firstname}}
.
curl --location --request POST 'https://company.freshdesk.com/api/v2/tickets/111/notes'
--header 'content-type: application/json'
--header 'Authorization: Basic xxxxx'
--data-raw '{
"body": "Hello {{ticket.requester.firstname}} Thank you for getting in touch with us",
"user_id": 99999,
"private": false,
"incoming": true
}'
I’ve noticed that these placeholders don’t get resolved during the creation process.
Is there a way to resolve the placeholders during the creation or via a separate endpoint?
Best regards, Alex