We are going to set up several data automations that will synchronize data when a new user is created across Memberstack, Airtable, and Webflow using Airtable Automations and Make.com, which will ultimately enable us to create unique user profiles.
The automations that we are going to create are:
In this step, we are going to automate the flow of New User data so that when a new user signs up, their data appears in Memberstack, Airtable, and Webflow.
Create a new scenario in Make.com, and select the Memberstack - Watch New Members module as a trigger. Within the module, click ‘add new webhook’ and name it ‘New Member Webhook’.
You will be required to connect your Memberstack account to Make.com. You will need an APP ID and a Secret Key, which you can find in Memberstack’s settings:
- Memberstack -> Global Settings -> Application -> Memberstack APP ID
- Memberstack -> Global Settings -> Dev Tools -> Secret Key
Test the module by clicking Run Once and then creating a new test user on your site. The module should now be importing all of the data on your new user.
Next, connect an Airtable - Create a Record module to the Memberstack module. After adding the module, you will be prompted to create a connection with Airtable, which will require creating a Personal Access Token.
In Airtable, navigate to Settings -> Builder Hub -> Personal Access Tokens, and click Create New Token. Name your token, and then under Scopes select:
- data.records.read
- data-records.write
- Schema.bases.read
Under Access, select the Airtable workspace or table for your project, and then select Save Changes. Airtable will now provide you with a personal access token, which you will need to copy and paste back into the Make.com Airtable module.
With Airtable connected, we can now set up the module. Select the base for your project and the ‘Users’ table, and then map each record field to the value that you received from the Memberstack module.
Test the Airtable module by clicking ‘Run Once’ and then creating another test user. At this point, you should see a new user being created in Airtable as well as Memberstack after a site signup.
Next , connect a Webflow - Create an Item module to your scenario. Just like with Memberstack and Airtable, you will be required to create a connection to your Webflow Account.
Once you have done so, choose your site and collection from the dropdown menus, and then map the fields with the data that you received from the Memberstack module.
Next add a Webflow - Publish an Item module. Map the Item IDs fields with the Webflow Item ID generated by Airtable - Create an Item.
Test the Webflow modules by clicking ‘Run Once’ and then creating another test user. At this point, you should see a new user being created and published in Webflow, as well as Airtable and Memberstack after a site signup.
In the next step, we are going to use the same scenario to send data back to Airtable and Memberstack after a user is created in Webflow.
- Syncing data to Airtable helps maintain one Single Source of Truth (SSOT), which will provide additional benefits at later stages.
- Syncing data to Memberstack allows us to use the unique Item ID generated by Webflow to set unique profile URLS in Memberstack
Attach an Airtable - Update a Record module to the module from the previous step, then select your base and the ‘Users’ table.
- Map the Record ID field with ID from Airtable - Create a Record
- Map the WF UserID field with Item ID from Webflow - Create an Item.
Next, attach a Memberstack - Update a Member module to the end of the scenario.
- Map the Member ID field with MS UserID from Airtable - Create a Record.
- Map the WF UserID field with Item ID from Webflow - Create An Item.
Lastly, in the Login Redirect field,
- Type “users/” (‘users’ being the name of your Users Webflow Collection)
- Append it with the Slug value from Webflow - Create an Item.
This final field populates the Memberstack login-redirect field, and will generate a unique url for each user’s profile page based on their Memberstack ID Slug.
Note: It is very important that you use the Slug value and not the MS UserID value, otherwise your unique urls will not work.
In this step, we will create an automated Update User flow, which will make sure to keep the data in Memberstack, Airtable, and Webflow in sync when a user updates their profile.
Create a new scenario in Make.com, and select Memberstack - Watch Updated Members as a trigger. Within the module, click ‘add new webhook’ and name it ‘Update User’. Then, attach an Airtable - Search Records module, and add your base and table.
Select all output fields, and then in the formula field,
- type {MS UserID} = ‘’
- Append the mapped Member ID from Memberstack - Watch Update Members between the quotation marks.
This formula tells Airtable to search for an Airtable record where a value in the MS UserID column matches the Member ID of the user that was just updated in Memberstack.
Attach an Airtable - Update a Record module. Map the record ID from the previous module and then map the remaining fields to values from the first Memberstack module that were present on your sign up form.
Attach a Webflow - Update an Item module and map the Item field to the wf-userid value received from the first Memberstack module. Then, map the remaining fields to values from the first Memberstack module.
To finish, attach a Webflow - Publish an Item module to the end of the scenario. Map the Item IDs field with the value from the previous module.
Test the scenario by clicking Run Once and then by updating a user manually in Memberstack. If successful, then updating a user in Memberstack will now also update each corresponding user in Airtable and Webflow.