Accessing Subform Images in Zoho Creator: URL Format Guide

If we are passing a subform image through image download process is this the correct URL for the subform image?


  1. <domain>/file/account_name/applinkname/reportlinkname/record_id/subform.Field_Link_name/image-download/privatelink?filepath=<value>

Corrected format:

  1. for each ele in input.Images
  2. {
  3. if(ele.Image != null)
  4. {
  5. filename = ele.Image.getSuffix("image/").getprefix("\"").trim();
  6. subformImageURL="https://creator.zohopublic.com/file/buildpayllc/trustpayapp/All_Osha/"+input.ID+"/Images.Image/image-download/FjYEQtTYy6Nn0AbzXUYDBkR7JWM9G1vbp4qqSKYOURPUBLICKEYapD4xQZBCJ6ZqVNkbeOKS1PsaxC0Vn3OUt?filepath="+filename;
  7. imageURLs.add(subformImageURL);
  8. }
  9. }