After some testing, I can confirm that member ID, user ID, and currently_entitled_tiers
are present in webhook events. I put together a sample production payload below.
{
"data": {
"attributes": {
"campaign_lifetime_support_cents": 16800,
"currently_entitled_amount_cents": 0,
"email": "johndoe@gmail.com",
"full_name": "JohnDoe",
"is_follower": false,
"last_charge_date": "2023-01-18T02:55:46.000+00:00",
"last_charge_status": "Paid",
"lifetime_support_cents": 16800,
"next_charge_date": "2023-02-01T08:00:00.000+00:00",
"note": "",
"patron_status": "former_patron",
"pledge_cadence": 1,
"pledge_relationship_start": "2020-06-21T19:24:35.015+00:00",
"will_pay_amount_cents": 0
},
"id": "this-is-a-fake-member-id",
"relationships": {
"address": {
"data": null
},
"campaign": {
"data": {
"id": "2222222",
"type": "campaign"
},
"links": {
"related": "https://www.patreon.com/api/oauth2/v2/campaigns/2222222"
}
},
"currently_entitled_tiers": {
"data": []
},
"user": {
"data": {
"id": "11111111",
"type": "user"
},
"links": {
"related": "https://www.patreon.com/api/oauth2/v2/user/11111111"
}
}
},
"type": "member"
},
"included": [
{
"attributes": {
"created_at": "2020-06-15T22:46:15.000+00:00",
"creation_name": "creating a Patreon Campaign",
"discord_server_id": null,
"google_analytics_id": null,
"has_rss": false,
"has_sent_rss_notify": false,
"image_small_url": "https://c10.patreonusercontent.com/4/patreon-media/p/campaign/2222222/image-name.jpg?token-time=123123&token-hash=fake-hash",
"image_url": "https://c10.patreonusercontent.com/4/patreon-media/p/campaign/2222222/image-name.jpg?token-time=123123&token-hash=fake-hash",
"is_charged_immediately": false,
"is_monthly": false,
"is_nsfw": false,
"main_video_embed": null,
"main_video_url": null,
"one_liner": null,
"patron_count": 999,
"pay_per_name": "episode",
"pledge_url": "/join/patreoncampaign",
"published_at": "2020-06-15T23:07:30.000+00:00",
"rss_artwork_url": null,
"rss_feed_title": null,
"summary": "This is a Patreon campaign.",
"thanks_embed": null,
"thanks_msg": null,
"thanks_video_url": null,
"url": "https://www.patreon.com/patreoncampaign",
"vanity": "patreoncampaign"
},
"id": "2222222",
"type": "campaign"
},
{
"attributes": {
"about": null,
"created": "2018-09-20T04:46:49.000+00:00",
"first_name": "JohnDoe",
"full_name": "JohnDoe",
"hide_pledges": false,
"image_url": "https://c8.patreon.com/2/200/11111111",
"is_creator": false,
"last_name": "",
"like_count": 2,
"social_connections": {
"deviantart": null,
"discord": null,
"facebook": null,
"google": null,
"instagram": null,
"reddit": null,
"spotify": null,
"twitch": null,
"twitter": null,
"vimeo": null,
"youtube": null
},
"thumb_url": "https://c8.patreon.com/2/200/11111111",
"url": "https://www.patreon.com/user?u=11111111",
"vanity": null
},
"id": "11111111",
"type": "user"
}
],
"links": {
"self": "https://www.patreon.com/api/oauth2/v2/members/this-is-a-fake-member-id"
}
}