May 11
Webhook Integration Enrichment
Loving the new webhook integration https://help.throne.com/en/articles/14982436-webhook-integra… However, it is a bit limiting for gift_purchased. It would be incredibly useful to also return the amount and currency of the gift data of the gift_purchased webhook event, for consistency with contributions. Similar for crowdfunded gift, but not as necessary.For example, currently:gift_purchased{ "creator_id": "string", "creator_username": "string", "gifter_username": "string", "message": "string (optional)", "item_name": "string", "item_thumbnail_url": "string", "is_surprise_gift": true} contribution_purchased{ "creator_id": "string", "creator_username": "string", "gifter_username": "string", "message": "string (optional)", "item_name": "string", "item_thumbnail_url": "string", "amount": 1099, "currency": "USD"}gift_crowdfunded{ "creator_id": "string", "creator_username": "string", "item_name": "string", "item_thumbnail_url": "string", "is_surprise_gift": true}I believe it would be much more useful if it included a bit more data, such as:gift_purchased{ "creator_id": "string", "creator_username": "string", "gifter_username": "string", "message": "string (optional)", "item_name": "string", "item_thumbnail_url": "string", "is_surprise_gift": true, "price": 2499, "currency": "USD"} contribution_purchased{ "creator_id": "string", "creator_username": "string", "gifter_username": "string", "message": "string (optional)", "item_name": "string", "item_thumbnail_url": "string", "amount": 1099, "currency": "USD"}gift_crowdfunded{ "creator_id": "string", "creator_username": "string", "item_name": "string", "item_thumbnail_url": "string", "is_surprise_gift": true, "price": 2499, "currency": "USD"}
Completed
Wow, looking at the examples page and testing button, seems like this got implemented! Great work!