- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-03-2020
03:15 AM
11-03-2020
03:15 AM
Attaching array of File Ids in workflow email
Problem: List of file Ids sent from a liquid task is not recognized in the email attachment; it is failing with the error – “The current tenant does not have a file with Id’’”
Solution:
Change the format to JSON while providing the File ID array in the Attachments.
Example:
{{Data.Liquid.fileIdArray | to_json}}
The array of File Ids will be recognized when it is converted and sent in the JSON format.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-03-2020
04:14 AM
11-03-2020
04:14 AM
Re: Attaching array of File Ids in workflow email
Thanks Goutham,
This is very insightful