Hi,
I read through the placeholder reference page.
I am triggering an event whenever a comment is created. Now in a comment there are multiple attachments and i'm able to fetch their urls and names by using following POST body.
{"ticket_id":"{{ticket.id}}",
"comment_id":"{{ticket.comments[0].id}}",
"attachment":["{% for attachment in ticket.comments[0].attachments %}<{'filename': '{{attachment.filename}}', 'permalink': '{{attachment.url}}', 'id': ''}>{% endfor %}"]}
But i am looking for a placeholder inside this that can give me the attachment id field as part of id inside each attachment.
Can you link me to the placeholder reference docs you're referring to? I just want to make sure we're both referring to the same thing.
Thanks!