Is it possible to have hooks run for new members be created using the PrivateMemberData collection afterInsert hook? I couldn’t find any exact answers on the forum or articles but I might have missed something.
If it is possible, what would it look like?
#WixData
Hi Patrick,
I think you can add hooks to the PrivateMembersData. Here is an example for you made by @russian-dima (it might be just using the backend code).
link: https://russian-dima.wixsite.com/meinewebsite/comments
In this example, a member posts a comment and their name & profile picture is displayed automatically next to their comment.
Note: you will only be able to post a comment after you have logged in and clicked the green button.
Here is another example for you by @russian-dima . This example shows your user details after you click the “show” button. This is not using hooks (I don’t think so) but it might help you.
link: https://russian-dima.wixsite.com/meinewebsite/user-infos
This example also requires you to log in.
~Hope this helps!~
Arthur 
Thanks for the links! I checked them out. I didn’t really see anything about hooks for the PrivateMemberData. I just want to be able to have hooks when new members join so I can add their details to other databases/send triggered emails. If all else fails, I’ll just make a custom registration/login form.