Webhook to GET email attachments using JSON Hello! So, I wanted to be able to use the webhook function to extract attachments from tickets automatically after a desired trigger action and either save them to a dedicated file destination or send the data to an application to immediately print pdf/xlxs files. I’ve been reading the documentation, but I think the “Using Webhooks” article might be outdated and would appreciate some help to make sure it works as intended. As I understand it, the JSON code would look something like this: { "name": "Fetch Email Attachments", "url": "https://yourserver.com/webhook-handler", "http_method": "GET", "headers": { "Content-Type": "application/json", "Authorization": "Basic YOUR_BASE64_ENCODED_API_KEY" }, "payload": { "ticket_id": "{{ticket.id}}", "event": "{{event}}" }, "trigger_on": [ "ticket.created", "ticket.updated" ]} However, in the Trigger webhook section I don’t have an option to edit the body, so I can only assume that the website already has the function written and simplifies it for