Last active
August 29, 2015 13:58
-
-
Save jhauraw/9943957 to your computer and use it in GitHub Desktop.
Stripe Webhook Event Tokens
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Complete list of Stripe Event Tokens as sent via webhook | |
* in the object: event_json->type. Useful in your webhook | |
* file for taking action depending on the type of event, | |
* such as with PHP and the switch statement. | |
* Valid: 2014-04-01 | |
*/ | |
account.updated | |
account.application.deauthorized | |
balance.available | |
charge.succeeded | |
charge.failed | |
charge.refunded | |
charge.captured | |
charge.updated | |
charge.dispute.created | |
charge.dispute.updated | |
charge.dispute.closed | |
customer.created | |
customer.updated | |
customer.deleted | |
customer.card.created | |
customer.card.updated | |
customer.card.deleted | |
customer.subscription.created | |
customer.subscription.updated | |
customer.subscription.deleted | |
customer.subscription.trial_will_end | |
customer.discount.created | |
customer.discount.updated | |
customer.discount.deleted | |
invoice.created | |
invoice.updated | |
invoice.payment_succeeded | |
invoice.payment_failed | |
invoiceitem.created | |
invoiceitem.updated | |
invoiceitem.deleted | |
plan.created | |
plan.updated | |
plan.deleted | |
coupon.created | |
coupon.deleted | |
transfer.created | |
transfer.updated | |
transfer.paid | |
transfer.failed | |
ping |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment