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