Eventbrite > Airtable

Hi,

I’m trying to send all new bookings across various Eventbrite events to airtable. After an event booking is made via Eventbrite I can send basic info like name, email. However I’m struggling to send the event name, event date and custom questions (phone, postcode in this instance). Eventbrite only seems to give an Event ID (no event name), no date, and the custom question answers are stored in an array. I’ve read about using get() and map() to pull data from an array but am unsure how to proceed.

Does anyone have any experience with this? I’d appreciate if you can send me the right direction.

Thanks.

1 Like

Can you use a some sort of get module with the event id? A get module usually would give you more info.

1 Like

Hi @Chris_BIC

Could you please confirm which module are you using? I could see all details in watch module.
image

To get items from array, use get() and map() like below:
{{get(map(77.category.subcategories; “name”; “id”; 1234); 1)}}

OR

{{get(map(77.category.subcategories; “name”); 4)}}

Please note: This is for reference only, you need to map your variables and names.

Regards,
Msquare Automation - Gold Partner of Make
@Msquare_Automation

Hi,

I have used the “Watch Attendees in Organisation” module as I need attendees from across multiple events.

I’ve managed to solve this by using a second Eventbrite module to make an API call and passed it the Event ID from the first module in the URL. This way I can get the event name and date.

To get the question answers I’ve passed the array index to the answer array without using get() and map(). Seems to do the trick.

Thanks for your help. Using get() and map() like that is good to know.

1 Like