Hi everyone,
I'm currently using RevenueCat with React Native Expo and I have a question about how the email attribute is handled.
In my app, I'm initializing RevenueCat as follows:
await Purchases.configure({
apiKey: APIKeys.apple,
});
Purchases.setEmail(userData.email);
Purchases.setDisplayName(userData.name);
I want to know if the email
attribute will be sent to my webhook when a purchase event or subscription change occurs. I’m specifically setting the email after configuring RevenueCat, but I'm unsure if this will be passed to the webhook.
I didn’t see an email
attribute in the body of a POST request for webhook events when I read the documentation here.
Has anyone else implemented something similar or can confirm how this works?
Thanks in advance!