How to sync verified Memberstack users to Mailerlite using Make without sending unverified members Answered

I’m struggling with a project where I require user verification via email, and sending user info to Mailerlite via Make. If I use the “Watch new members” module it’s fired when the user is created in Memberstack before the user has verified. And I really want to avoid creating unverified users in Mailerlite. If I use the “Watch updated members” module It seems not to be triggered by users verfiring in Memberstack. Any advice?

Comments

2 comments

  • Comment author
    Raquel Lopez

    The member.updated webhook sends an event whenever there's a new update of the member. Here's an example of the payload of the event.

    The verify event will always happen as an update. The user will get the status verify after it has been created, because it requires from an user action to get verified.

    You should be able to obtain the same event if you're using Memberstack module, but if not, you can subscribe a custom webhook to your Make scenario

    To create a custom webhook in Make, start by adding a custom webhook module. This will generate a URL where Make expects to receive data.

    Next, go to the Memberstack dashboard, create a new Webhook endpoint, and subscribe to the member.updated event by clicking the checkbox. Then, paste the Make-generated webhook URL into the endpoint URL field.

    All member.updated events will be processed through your custom webhook scenario. To ensure it only runs the remaining operations on verification actions and not every update, I recommend adding a filter based on the verification reason.

    You can read more about Webhook feature by checking out the docs: https://docs.memberstack.com/hc/en-us/articles/7329156946587-Webhooks
    https://www.make.com/en/help/tools/webhooks

    0
  • Comment author
    Jesper Vestergaard

    Ah. Nice. Thanks a lot! 🙂

    0

Please sign in to leave a comment.