How to retrieve Memberstack JSON Data Using Make.com & Memberstack API? Planned

Post author
Shadi null

Is there a way to fetch member JSON data from make.com?

Comments

4 comments

  • Comment author
    Duncan from Memberstack
    • Edited

    Hey Shadi 👋 Yes, you will need to add some JSON to a member and then run your scenario in Make. Once Make is aware of the JSON, it will display in the Make UI.

    0
  • Hi there!

    Is it not possible to retrieve a member's JSON via the Memberstack API?

    0
  • Comment author
    Tyler Bell

    It’s possible. I’ll follow up with docs soon.

    0
  • Comment author
    Raquel Lopez

    Yes it is possible.

    Either via the admin API (backend server environment)

    const member = await memberstack.members.get({
    id: "mem_abc123"
    });

    Or using Dom API (frontend/browser environment)

    // Get the member's JSON data
    const response = await memberstackDom.getMemberJSON();

    I cannot pinpoint the documentation to the specific methods. But here's the reference to both package's documentation

    Dom Package: https://developers.memberstack.com/dom-package/quick-start

    Admin Package:
    https://developers.memberstack.com/admin-node-package/quick-start

    You can use their playground's sections to test around responses with your particular application

    0

Please sign in to leave a comment.