Download Attachment in CRM

PHOTO EMBED

Fri Nov 15 2024 11:55:08 GMT+0000 (Coordinated Universal Time)

Saved by @RehmatAli2024 #deluge

attachment_resp = zoho.crm.getRelatedRecords("Attachments", "Token_Redemption", record_id);
// 			info attachment_resp;

for each file in attachment_resp
{
  id = file.get("id");
  info id;
  download_attachment = invokeurl
  [
    url: "https://www.zohoapis.eu/crm/v7/Token_Redemption/"+record_id+"/Attachments/"+id
    type: GET
    connection:"zoho_crm"
  ];
  info download_attachment;
}
content_copyCOPY