How to retrieve Memberstack JSON Data Using Make.com & Memberstack API? Shadi null asked September 14, 2023 07:47 Planned Is there a way to fetch member JSON data from make.com? 4 comments Sort by Date Votes Duncan from Memberstack · Edited May 01, 2024 13:12 Comment options 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. Upvote this reply 0 Downvote this reply Reply Copy link AurĂ©lien Gallier undefined · June 16, 2025 13:55 Comment options Hi there! Is it not possible to retrieve a member's JSON via the Memberstack API? Upvote this reply 0 Downvote this reply Reply Copy link Tyler Bell · June 16, 2025 13:56 Comment options It’s possible. I’ll follow up with docs soon. Upvote this reply 0 Downvote this reply Reply Copy link Raquel Lopez · June 16, 2025 13:57 Comment options 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 dataconst 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 Upvote this reply 0 Downvote this reply Reply Copy link Please sign in to leave a comment.
4 comments
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.
Hi there!
Is it not possible to retrieve a member's JSON via the Memberstack API?
It’s possible. I’ll follow up with docs soon.
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)
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
Please sign in to leave a comment.