Hi
I use webhooks members:create and members:delete.
I need to add and remove subscriptions to users accounts on my site. Users identifier is email.
I got few webhooks from patreon with email like this
[data] => Array
(
[attributes] => Array
(
[currently_entitled_amount_cents] => 0
[email] => ********@gmail.com
…
But then I got webhook with empty email.
[data] => Array
(
[attributes] => Array
(
[currently_entitled_amount_cents] => 0
[email] =>
[full_name] => user_name_here
…
I checked all POST data, no one field have email.
How to get user email?