Map fields that don't exist in every record

Hello!
I’m trying to get users from slack and map their information to an airtable using make. However, some users don’t have emails associated with their slack account. How can I still map this information? Make does not give me an option to map the email field if the first user doesn’t have an email associated with their account.

Hey @Kenalpha

If your first result in an array doesn’t contain the email, then you won’t see that variable in mapping menu.

In order to map it you’ll need to type like this: {{1.email}}, make sure change the 1 with whatever the slack-get-users module’s number is, and if email is within an array, you will need to type the array value with dot notation like this: {{1.users.email}}

3 Likes