For various reasons, I’m storing Attachments in an Attachments Data Type which can be Images, Videos or Files.
I have 2x API Workflows:
- Create Attachment (Image)
- Create Attachment (File/Video)
Lets just focus on the 1st API Workflow for this question… I’m trying to work out how I can return the X Attachments created, to save on a Data Type (which has a field of type Attachment).
Use Case:
- A customer can complete a form, and can upload a number of images/videos/files.
- On the ‘Save’ workflow, I call both of the above workflows on the relevant list of images and files/videos.
- In the ‘Save’ workflow, I create a Lead. I’m wanting to save the outputs of the API workflows (Attachments) the the Lead…
Calling API Workflow on a List of Things:
API Workflow: Create Attachment (Image):
Attempting to Save the Attachments created in the API Workflow:
This is where I’m not sure how to access the return data from the API Workflow…
Thanks!