Hi,
I have a Zap that does the following:
- Trigger callback with data (email addresses) sent as an array
- Custom code (Python) to loop through the email addresses
- LinkedIn Matched Audiences (Action) to send each email address in the list to LinkedIn.
When I run the Zap it looks like only 1 email address is being sent from the loop to LinkedIn.
Here is my Python code:
data = input_datat'data']
data_list = data.split (",")
for a in data_list:
return {'email':a}
return {'email':'test@test.com'}
Where am I going wrong?
Thanks