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?
<domain>/file/account_name/
applinkname/reportlinkname/
record_id/subform.Field_Link_
name/image-download/
privatelink?filepath=<value>
Corrected format:
for each ele in input.Images
{
if(ele.Image != null)
{
filename = ele.Image.getSuffix("image/").
getprefix("\"").trim();
subformImageURL="
https://
creator.zohopublic.com/file/
buildpayllc/trustpayapp/
All_Osha/"+input.ID+"/Images.
Image/image-download/
FjYEQtTYy6Nn0AbzXUYDBkR7JWM9G1vbp4qqSKYOURPUBLICKEYapD4xQZBCJ6ZqVNkbeOKS1Ps
axC0Vn3OUt?filepath="+
filename;
imageURLs.add(subformImageURL)
;
}
}