Events

Events are our way of letting you know when something interesting happens in your account. When an interesting event occurs, we create a new Event object. For example, when a charge succeeds, we create a charge.succeeded event, and when an invoice payment attempt fails, we create an invoice.payment_failed event. Certain API requests might create multiple events. For example, if you create a new subscription for a customer, you receive both a customer.subscription.created event and a charge.succeeded event.

Events occur when the state of another API resource changes. The event’s data field embeds the resource’s state at the time of the change. For example, a charge.succeeded event contains a charge, and an invoice.payment_failed event contains an invoice.

As with other API resources, you can use endpoints to retrieve an individual event or a list of events from the API. We also have a separate webhooks system for sending the Event objects directly to an endpoint on your server. You can manage webhooks in your account settings. Learn how to listen for events so that your integration can automatically trigger reactions.

When using Connect, you can also receive event notifications that occur in connected accounts. For these events, there’s an additional account attribute in the received Event object.

We only guarantee access to events through the Retrieve Event API for 30 days.

The Event object

Attributes

  • idstring

    Unique identifier for the object.

  • api_versionnullable string

    The Stripe API version used to render data. This property is populated only for events on or after October 31, 2014.

  • dataobject

    Object containing data associated with the event.

  • requestnullable object

    Information on the API request that triggers the event.

  • typestring

    Description of the event (for example, invoice.created or charge.refunded).

More attributes

  • objectstring

  • accountnullable stringConnect only

  • createdtimestamp

  • livemodeboolean

  • pending_webhooksinteger

The Event object
{
"id": "evt_1NG8Du2eZvKYlo2CUI79vXWy",
"object": "event",
"api_version": "2019-02-19",
"created": 1686089970,
"data": {
"object": {
"id": "seti_1NG8Du2eZvKYlo2C9XMqbR0x",
"object": "setup_intent",
"application": null,
"automatic_payment_methods": null,
"cancellation_reason": null,
"client_secret": "seti_1NG8Du2eZvKYlo2C9XMqbR0x_secret_O2CdhLwGFh2Aej7bCY7qp8jlIuyR8DJ",
"created": 1686089970,
"customer": null,
"description": null,
"flow_directions": null,
"last_setup_error": null,
"latest_attempt": null,
"livemode": false,
"mandate": null,
"metadata": {},
"next_action": null,
"on_behalf_of": null,
"payment_method": "pm_1NG8Du2eZvKYlo2CYzzldNr7",
"payment_method_options": {
"acss_debit": {
"currency": "cad",
"mandate_options": {
"interval_description": "First day of every month",
"payment_schedule": "interval",
"transaction_type": "personal"
},
"verification_method": "automatic"
}
},
"payment_method_types": [
"acss_debit"
],
"single_use_mandate": null,
"status": "requires_confirmation",
"usage": "off_session"
}
},
"livemode": false,
"pending_webhooks": 0,
"request": {
"id": null,
"idempotency_key": null
},
"type": "setup_intent.created"
}

Retrieve an event

Retrieves the details of an event. Supply the unique identifier of the event, which you might have received in a webhook.

Parameters

No parameters.

Returns

Returns an event object if a valid identifier was provided. All events share a common structure, detailed to the right. The only property that will differ is the data property.

In each case, the data dictionary will have an attribute called object and its value will be the same as retrieving the same object directly from the API. For example, a customer.created event will have the same information as retrieving the relevant customer would.

In cases where the attributes of an object have changed, data will also contain a dictionary containing the changes.

GET /v1/events/:id
curl https://api.stripe.com/v1/events/evt_1NG8Du2eZvKYlo2CUI79vXWy \
-u "sk_test_4eC39Hq...arjtT1zdp7dcsk_test_4eC39HqLyjWDarjtT1zdp7dc:"
Response
{
"id": "evt_1NG8Du2eZvKYlo2CUI79vXWy",
"object": "event",
"api_version": "2019-02-19",
"created": 1686089970,
"data": {
"object": {
"id": "seti_1NG8Du2eZvKYlo2C9XMqbR0x",
"object": "setup_intent",
"application": null,
"automatic_payment_methods": null,
"cancellation_reason": null,
"client_secret": "seti_1NG8Du2eZvKYlo2C9XMqbR0x_secret_O2CdhLwGFh2Aej7bCY7qp8jlIuyR8DJ",
"created": 1686089970,
"customer": null,
"description": null,
"flow_directions": null,
"last_setup_error": null,
"latest_attempt": null,
"livemode": false,
"mandate": null,
"metadata": {},
"next_action": null,
"on_behalf_of": null,
"payment_method": "pm_1NG8Du2eZvKYlo2CYzzldNr7",
"payment_method_options": {
"acss_debit": {
"currency": "cad",
"mandate_options": {
"interval_description": "First day of every month",
"payment_schedule": "interval",
"transaction_type": "personal"
},
"verification_method": "automatic"
}
},
"payment_method_types": [
"acss_debit"
],
"single_use_mandate": null,
"status": "requires_confirmation",
"usage": "off_session"
}
},
"livemode": false,
"pending_webhooks": 0,
"request": {
"id": null,
"idempotency_key": null
},
"type": "setup_intent.created"
}

List all events

List events, going back up to 30 days. Each event data is rendered according to Stripe API version at its creation time, specified in event object api_version attribute (not according to your current Stripe API version or Stripe-Version header).

Parameters

  • typesarray of strings

    An array of up to 20 strings containing specific event names. The list will be filtered to include only events with a matching event property. You may pass either type or types, but not both.

More parameters

  • createdobject

  • delivery_successboolean

  • ending_beforestring

  • limitinteger

  • starting_afterstring

  • typestring

Returns

A dictionary with a data property that contains an array of up to limit events, starting after event starting_after. Each entry in the array is a separate event object. If no more events are available, the resulting array will be empty.

GET /v1/events
curl -G https://api.stripe.com/v1/events \
-u "sk_test_4eC39Hq...arjtT1zdp7dcsk_test_4eC39HqLyjWDarjtT1zdp7dc:" \
-d limit=3
Response
{
"object": "list",
"url": "/v1/events",
"has_more": false,
"data": [
{
"id": "evt_1NG8Du2eZvKYlo2CUI79vXWy",
"object": "event",
"api_version": "2019-02-19",
"created": 1686089970,
"data": {
"object": {
"id": "seti_1NG8Du2eZvKYlo2C9XMqbR0x",
"object": "setup_intent",
"application": null,
"automatic_payment_methods": null,
"cancellation_reason": null,
"client_secret": "seti_1NG8Du2eZvKYlo2C9XMqbR0x_secret_O2CdhLwGFh2Aej7bCY7qp8jlIuyR8DJ",
"created": 1686089970,
"customer": null,
"description": null,
"flow_directions": null,
"last_setup_error": null,
"latest_attempt": null,
"livemode": false,
"mandate": null,
"metadata": {},
"next_action": null,
"on_behalf_of": null,
"payment_method": "pm_1NG8Du2eZvKYlo2CYzzldNr7",
"payment_method_options": {
"acss_debit": {
"currency": "cad",
"mandate_options": {
"interval_description": "First day of every month",
"payment_schedule": "interval",
"transaction_type": "personal"
},
"verification_method": "automatic"
}
},
"payment_method_types": [
"acss_debit"
],
"single_use_mandate": null,
"status": "requires_confirmation",
"usage": "off_session"
}
},
"livemode": false,
"pending_webhooks": 0,
"request": {
"id": null,
"idempotency_key": null
},
"type": "setup_intent.created"
}
{...}
{...}
],
}

Types of events

This is a list of all the types of events we currently send. We may add more at any time, so in developing and maintaining your code, you should not assume that only these types exist.

You’ll notice that these events follow a pattern: resource.event. Our goal is to design a consistent system that makes things easier to anticipate and code against. Events that occur on subresources like customer.subscription do not trigger the parent’s update event.

Events marked as Selection required are only created when a webhook has been configured to listen for that type of event specifically. A webhook set to listen to all events will not receive an event requiring explicit selection.

Event

  • account.application.authorizeddata.object is an application

    Occurs whenever a user authorizes an application. Sent to the related application only.

  • account.application.deauthorizeddata.object is an application

    Occurs whenever a user deauthorizes an application. Sent to the related application only.

  • account.external_account.createddata.object is an external account (e.g., card or bank account)

    Occurs whenever an external account is created.

  • account.external_account.deleteddata.object is an external account (e.g., card or bank account)

    Occurs whenever an external account is deleted.

  • account.external_account.updateddata.object is an external account (e.g., card or bank account)

    Occurs whenever an external account is updated.

  • account.updateddata.object is an account

    Occurs whenever an account status or property has changed.

  • application_fee.createddata.object is an application fee

    Occurs whenever an application fee is created on a charge.

  • application_fee.refund.updateddata.object is a fee refund

    Occurs whenever an application fee refund is updated.

  • application_fee.refundeddata.object is an application fee

    Occurs whenever an application fee is refunded, whether from refunding a charge or from refunding the application fee directly. This includes partial refunds.

  • balance.availabledata.object is a balance

    Occurs whenever your Stripe balance has been updated (e.g., when a charge is available to be paid out). By default, Stripe automatically transfers funds in your balance to your bank account on a daily basis. This event is not fired for negative transactions.

  • billing_portal.configuration.createddata.object is a billing portal configuration

    Occurs whenever a portal configuration is created.

  • billing_portal.configuration.updateddata.object is a billing portal configuration

    Occurs whenever a portal configuration is updated.

  • billing_portal.session.createddata.object is a billing portal session

    Occurs whenever a portal session is created.

  • capability.updateddata.object is a capability

    Occurs whenever a capability has new requirements or a new status.

  • cash_balance.funds_availabledata.object is a cash balance

    Occurs whenever there is a positive remaining cash balance after Stripe automatically reconciles new funds into the cash balance. If you enabled manual reconciliation, this webhook will fire whenever there are new funds into the cash balance.

  • charge.captureddata.object is a charge

    Occurs whenever a previously uncaptured charge is captured.

  • charge.dispute.closeddata.object is a dispute

    Occurs when a dispute is closed and the dispute status changes to lost, warning_closed, or won.

  • charge.dispute.createddata.object is a dispute

    Occurs whenever a customer disputes a charge with their bank.

  • charge.dispute.funds_reinstateddata.object is a dispute

    Occurs when funds are reinstated to your account after a dispute is closed. This includes partially refunded payments.

  • charge.dispute.funds_withdrawndata.object is a dispute

    Occurs when funds are removed from your account due to a dispute.

  • charge.dispute.updateddata.object is a dispute

    Occurs when the dispute is updated (usually with evidence).

  • charge.expireddata.object is a charge

    Occurs whenever an uncaptured charge expires.

  • charge.faileddata.object is a charge

    Occurs whenever a failed charge attempt occurs.

  • charge.pendingdata.object is a charge

    Occurs whenever a pending charge is created.

  • charge.refund.updateddata.object is a refund

    Occurs whenever a refund is updated, on selected payment methods.

  • charge.refundeddata.object is a charge

    Occurs whenever a charge is refunded, including partial refunds.

  • charge.succeededdata.object is a charge

    Occurs whenever a charge is successful.

  • charge.updateddata.object is a charge

    Occurs whenever a charge description or metadata is updated, or upon an asynchronous capture.

  • checkout.session.async_payment_faileddata.object is a checkout session

    Occurs when a payment intent using a delayed payment method fails.

  • checkout.session.async_payment_succeededdata.object is a checkout session

    Occurs when a payment intent using a delayed payment method finally succeeds.

  • checkout.session.completeddata.object is a checkout session

    Occurs when a Checkout Session has been successfully completed.

  • checkout.session.expireddata.object is a checkout session

    Occurs when a Checkout Session is expired.

  • climate.order.canceleddata.object is a climate order

    Occurs when a Climate order is canceled.

  • climate.order.createddata.object is a climate order

    Occurs when a Climate order is created.

  • climate.order.delayeddata.object is a climate order

    Occurs when a Climate order is delayed.

  • climate.order.delivereddata.object is a climate order

    Occurs when a Climate order is delivered.

  • climate.order.product_substituteddata.object is a climate order

    Occurs when a Climate order’s product is substituted for another.

  • climate.product.createddata.object is a climate product

    Occurs when a Climate product is created.

  • climate.product.pricing_updateddata.object is a climate product

    Occurs when a Climate product is updated.

  • coupon.createddata.object is a coupon

    Occurs whenever a coupon is created.

  • coupon.deleteddata.object is a coupon

    Occurs whenever a coupon is deleted.

  • coupon.updateddata.object is a coupon

    Occurs whenever a coupon is updated.

  • credit_note.createddata.object is a credit note

    Occurs whenever a credit note is created.

  • credit_note.updateddata.object is a credit note

    Occurs whenever a credit note is updated.

  • credit_note.voideddata.object is a credit note

    Occurs whenever a credit note is voided.

  • customer_cash_balance_transaction.createddata.object is a customer cash balance transaction

    Occurs whenever a new customer cash balance transactions is created.

  • customer.createddata.object is a customer

    Occurs whenever a new customer is created.

  • customer.deleteddata.object is a customer

    Occurs whenever a customer is deleted.

  • customer.discount.createddata.object is a discount

    Occurs whenever a coupon is attached to a customer.

  • customer.discount.deleteddata.object is a discount

    Occurs whenever a coupon is removed from a customer.

  • customer.discount.updateddata.object is a discount

    Occurs whenever a customer is switched from one coupon to another.

  • customer.source.createddata.object is a source (e.g., card)

    Occurs whenever a new source is created for a customer.

  • customer.source.deleteddata.object is a source (e.g., card)

    Occurs whenever a source is removed from a customer.

  • customer.source.expiringdata.object is a source (e.g., card)

    Occurs whenever a card or source will expire at the end of the month.

  • customer.source.updateddata.object is a source (e.g., card)

    Occurs whenever a source’s details are changed.

  • customer.subscription.createddata.object is a subscription

    Occurs whenever a customer is signed up for a new plan.

  • customer.subscription.deleteddata.object is a subscription

    Occurs whenever a customer’s subscription ends.

  • customer.subscription.pauseddata.object is a subscription

    Occurs whenever a customer’s subscription is paused. Only applies when subscriptions enter status=paused, not when payment collection is paused.

  • customer.subscription.pending_update_applieddata.object is a subscription

    Occurs whenever a customer’s subscription’s pending update is applied, and the subscription is updated.

  • customer.subscription.pending_update_expireddata.object is a subscription

    Occurs whenever a customer’s subscription’s pending update expires before the related invoice is paid.

  • customer.subscription.resumeddata.object is a subscription

    Occurs whenever a customer’s subscription is no longer paused. Only applies when a status=paused subscription is resumed, not when payment collection is resumed.

  • customer.subscription.trial_will_enddata.object is a subscription

    Occurs three days before a subscription’s trial period is scheduled to end, or when a trial is ended immediately (using trial_end=now).

  • customer.subscription.updateddata.object is a subscription

    Occurs whenever a subscription changes (e.g., switching from one plan to another, or changing the status from trial to active).

  • customer.tax_id.createddata.object is a tax id

    Occurs whenever a tax ID is created for a customer.

  • customer.tax_id.deleteddata.object is a tax id

    Occurs whenever a tax ID is deleted from a customer.

  • customer.tax_id.updateddata.object is a tax id

    Occurs whenever a customer’s tax ID is updated.

  • customer.updateddata.object is a customer

    Occurs whenever any property of a customer changes.

  • entitlements.active_entitlement_summary.updateddata.object is an entitlements active entitlement summary

    Occurs whenever a customer’s entitlements change.

  • file.createddata.object is a file

    Occurs whenever a new Stripe-generated file is available for your account.

  • financial_connections.account.createddata.object is a financial connections account

    Occurs when a new Financial Connections account is created.

  • financial_connections.account.deactivateddata.object is a financial connections account

    Occurs when a Financial Connections account’s status is updated from active to inactive.

  • financial_connections.account.disconnecteddata.object is a financial connections account

    Occurs when a Financial Connections account is disconnected.

  • financial_connections.account.reactivateddata.object is a financial connections account

    Occurs when a Financial Connections account’s status is updated from inactive to active.

  • financial_connections.account.refreshed_balancedata.object is a financial connections account

    Occurs when an Account’s balance_refresh status transitions from pending to either succeeded or failed.

  • financial_connections.account.refreshed_ownershipdata.object is a financial connections account

    Occurs when an Account’s ownership_refresh status transitions from pending to either succeeded or failed.

  • financial_connections.account.refreshed_transactionsdata.object is a financial connections account

    Occurs when an Account’s transaction_refresh status transitions from pending to either succeeded or failed.

  • identity.verification_session.canceleddata.object is an identity verification session

    Occurs whenever a VerificationSession is canceled

  • identity.verification_session.createddata.object is an identity verification session

    Occurs whenever a VerificationSession is created

  • identity.verification_session.processingdata.object is an identity verification session

    Occurs whenever a VerificationSession transitions to processing

  • identity.verification_session.redacteddata.object is an identity verification sessionSelection required

    Occurs whenever a VerificationSession is redacted.

  • identity.verification_session.requires_inputdata.object is an identity verification session

    Occurs whenever a VerificationSession transitions to require user input

  • identity.verification_session.verifieddata.object is an identity verification session

    Occurs whenever a VerificationSession transitions to verified

  • invoice.createddata.object is an invoice

    Occurs whenever a new invoice is created. To learn how webhooks can be used with this event, and how they can affect it, see Using Webhooks with Subscriptions.

  • invoice.deleteddata.object is an invoice

    Occurs whenever a draft invoice is deleted. Note: This event is not sent for invoice previews.

  • invoice.finalization_faileddata.object is an invoice

    Occurs whenever a draft invoice cannot be finalized. See the invoice’s last finalization error for details.

  • invoice.finalizeddata.object is an invoice

    Occurs whenever a draft invoice is finalized and updated to be an open invoice.

  • invoice.marked_uncollectibledata.object is an invoice

    Occurs whenever an invoice is marked uncollectible.

  • invoice.overduedata.object is an invoice

    Occurs X number of days after an invoice becomes due—where X is determined by Automations

  • invoice.paiddata.object is an invoice

    Occurs whenever an invoice payment attempt succeeds or an invoice is marked as paid out-of-band.

  • invoice.payment_action_requireddata.object is an invoice

    Occurs whenever an invoice payment attempt requires further user action to complete.

  • invoice.payment_faileddata.object is an invoice

    Occurs whenever an invoice payment attempt fails, due either to a declined payment or to the lack of a stored payment method.

  • invoice.payment_succeededdata.object is an invoice

    Occurs whenever an invoice payment attempt succeeds.

  • invoice.sentdata.object is an invoice

    Occurs whenever an invoice email is sent out.

  • invoice.upcomingdata.object is an invoice

    Occurs X number of days before a subscription is scheduled to create an invoice that is automatically charged—where X is determined by your subscriptions settings. Note: The received Invoice object will not have an invoice ID.

  • invoice.updateddata.object is an invoice

    Occurs whenever an invoice changes (e.g., the invoice amount).

  • invoice.voideddata.object is an invoice

    Occurs whenever an invoice is voided.

  • invoice.will_be_duedata.object is an invoice

    Occurs X number of days before an invoice becomes due—where X is determined by Automations

  • invoiceitem.createddata.object is an invoiceitem

    Occurs whenever an invoice item is created.

  • invoiceitem.deleteddata.object is an invoiceitem

    Occurs whenever an invoice item is deleted.

  • issuing_authorization.createddata.object is an issuing authorization

    Occurs whenever an authorization is created.

  • issuing_authorization.requestdata.object is an issuing authorizationSelection required

    Represents a synchronous request for authorization, see Using your integration to handle authorization requests.

  • issuing_authorization.updateddata.object is an issuing authorization

    Occurs whenever an authorization is updated.

  • issuing_card.createddata.object is an issuing card

    Occurs whenever a card is created.

  • issuing_card.updateddata.object is an issuing card

    Occurs whenever a card is updated.

  • issuing_cardholder.createddata.object is an issuing cardholder

    Occurs whenever a cardholder is created.

  • issuing_cardholder.updateddata.object is an issuing cardholder

    Occurs whenever a cardholder is updated.

  • issuing_dispute.closeddata.object is an issuing dispute

    Occurs whenever a dispute is won, lost or expired.

  • issuing_dispute.createddata.object is an issuing dispute

    Occurs whenever a dispute is created.

  • issuing_dispute.funds_reinstateddata.object is an issuing dispute

    Occurs whenever funds are reinstated to your account for an Issuing dispute.

  • issuing_dispute.submitteddata.object is an issuing dispute

    Occurs whenever a dispute is submitted.

  • issuing_dispute.updateddata.object is an issuing dispute

    Occurs whenever a dispute is updated.

  • issuing_token.createddata.object is an issuing token

    Occurs whenever an issuing digital wallet token is created.

  • issuing_token.updateddata.object is an issuing token

    Occurs whenever an issuing digital wallet token is updated.

  • issuing_transaction.createddata.object is an issuing transaction

    Occurs whenever an issuing transaction is created.

  • issuing_transaction.updateddata.object is an issuing transaction

    Occurs whenever an issuing transaction is updated.

  • mandate.updateddata.object is a mandate

    Occurs whenever a Mandate is updated.

  • payment_intent.amount_capturable_updateddata.object is a payment intent

    Occurs when a PaymentIntent has funds to be captured. Check the amount_capturable property on the PaymentIntent to determine the amount that can be captured. You may capture the PaymentIntent with an amount_to_capture value up to the specified amount. Learn more about capturing PaymentIntents.

  • payment_intent.canceleddata.object is a payment intent

    Occurs when a PaymentIntent is canceled.

  • payment_intent.createddata.object is a payment intent

    Occurs when a new PaymentIntent is created.

  • payment_intent.partially_fundeddata.object is a payment intent

    Occurs when funds are applied to a customer_balance PaymentIntent and the ‘amount_remaining’ changes.

  • payment_intent.payment_faileddata.object is a payment intent

    Occurs when a PaymentIntent has failed the attempt to create a payment method or a payment.

  • payment_intent.processingdata.object is a payment intent

    Occurs when a PaymentIntent has started processing.

  • payment_intent.requires_actiondata.object is a payment intent

    Occurs when a PaymentIntent transitions to requires_action state

  • payment_intent.succeededdata.object is a payment intent

    Occurs when a PaymentIntent has successfully completed payment.

  • payment_link.createddata.object is a payment link

    Occurs when a payment link is created.

  • payment_link.updateddata.object is a payment link

    Occurs when a payment link is updated.

  • payment_method.attacheddata.object is a payment method

    Occurs whenever a new payment method is attached to a customer.

  • payment_method.automatically_updateddata.object is a payment method

    Occurs whenever a payment method’s details are automatically updated by the network.

  • payment_method.detacheddata.object is a payment method

    Occurs whenever a payment method is detached from a customer.

  • payment_method.updateddata.object is a payment method

    Occurs whenever a payment method is updated via the PaymentMethod update API.

  • payout.canceleddata.object is a payout

    Occurs whenever a payout is canceled.

  • payout.createddata.object is a payout

    Occurs whenever a payout is created.

  • payout.faileddata.object is a payout

    Occurs whenever a payout attempt fails.

  • payout.paiddata.object is a payout

    Occurs whenever a payout is expected to be available in the destination account. If the payout fails, a payout.failed notification is also sent, at a later time.

  • payout.reconciliation_completeddata.object is a payout

    Occurs whenever balance transactions paid out in an automatic payout can be queried.

  • payout.updateddata.object is a payout

    Occurs whenever a payout is updated.

  • person.createddata.object is a person

    Occurs whenever a person associated with an account is created.

  • person.deleteddata.object is a person

    Occurs whenever a person associated with an account is deleted.

  • person.updateddata.object is a person

    Occurs whenever a person associated with an account is updated.

  • plan.createddata.object is a plan

    Occurs whenever a plan is created.

  • plan.deleteddata.object is a plan

    Occurs whenever a plan is deleted.

  • plan.updateddata.object is a plan

    Occurs whenever a plan is updated.

  • price.createddata.object is a price

    Occurs whenever a price is created.

  • price.deleteddata.object is a price

    Occurs whenever a price is deleted.

  • price.updateddata.object is a price

    Occurs whenever a price is updated.

  • product.createddata.object is a product

    Occurs whenever a product is created.

  • product.deleteddata.object is a product

    Occurs whenever a product is deleted.

  • product.updateddata.object is a product

    Occurs whenever a product is updated.

  • promotion_code.createddata.object is a promotion code

    Occurs whenever a promotion code is created.

  • promotion_code.updateddata.object is a promotion code

    Occurs whenever a promotion code is updated.

  • quote.accepteddata.object is a quote

    Occurs whenever a quote is accepted.

  • quote.canceleddata.object is a quote

    Occurs whenever a quote is canceled.

  • quote.createddata.object is a quote

    Occurs whenever a quote is created.

  • quote.finalizeddata.object is a quote

    Occurs whenever a quote is finalized.

  • quote.will_expiredata.object is a quote

    Occurs X number of days before a quote is scheduled to expire—where X is determined by Automations

  • radar.early_fraud_warning.createddata.object is a radar early fraud warning

    Occurs whenever an early fraud warning is created.

  • radar.early_fraud_warning.updateddata.object is a radar early fraud warning

    Occurs whenever an early fraud warning is updated.

  • refund.createddata.object is a refund

    Occurs whenever a refund from a customer’s cash balance is created.

  • refund.updateddata.object is a refund

    Occurs whenever a refund from a customer’s cash balance is updated.

  • reporting.report_run.faileddata.object is a reporting report run

    Occurs whenever a requested ReportRun failed to complete.

  • reporting.report_run.succeededdata.object is a reporting report run

    Occurs whenever a requested ReportRun completed successfully.

  • reporting.report_type.updateddata.object is a reporting report typeSelection required

    Occurs whenever a ReportType is updated (typically to indicate that a new day’s data has come available).

  • review.closeddata.object is a review

    Occurs whenever a review is closed. The review’s reason field indicates why: approved, disputed, refunded, or refunded_as_fraud.

  • review.openeddata.object is a review

    Occurs whenever a review is opened.

  • setup_intent.canceleddata.object is a setup intent

    Occurs when a SetupIntent is canceled.

  • setup_intent.createddata.object is a setup intent

    Occurs when a new SetupIntent is created.

  • setup_intent.requires_actiondata.object is a setup intent

    Occurs when a SetupIntent is in requires_action state.

  • setup_intent.setup_faileddata.object is a setup intent

    Occurs when a SetupIntent has failed the attempt to setup a payment method.

  • setup_intent.succeededdata.object is a setup intent

    Occurs when an SetupIntent has successfully setup a payment method.

  • sigma.scheduled_query_run.createddata.object is a scheduled query run

    Occurs whenever a Sigma scheduled query run finishes.

  • source.canceleddata.object is a source (e.g., card)

    Occurs whenever a source is canceled.

  • source.chargeabledata.object is a source (e.g., card)

    Occurs whenever a source transitions to chargeable.

  • source.faileddata.object is a source (e.g., card)

    Occurs whenever a source fails.

  • source.mandate_notificationdata.object is a source (e.g., card)

    Occurs whenever a source mandate notification method is set to manual.

  • source.refund_attributes_requireddata.object is a source (e.g., card)

    Occurs whenever the refund attributes are required on a receiver source to process a refund or a mispayment.

  • source.transaction.createddata.object is a source transaction

    Occurs whenever a source transaction is created.

  • source.transaction.updateddata.object is a source transaction

    Occurs whenever a source transaction is updated.

  • subscription_schedule.aborteddata.object is a subscription schedule

    Occurs whenever a subscription schedule is canceled due to the underlying subscription being canceled because of delinquency.

  • subscription_schedule.canceleddata.object is a subscription schedule

    Occurs whenever a subscription schedule is canceled.

  • subscription_schedule.completeddata.object is a subscription schedule

    Occurs whenever a new subscription schedule is completed.

  • subscription_schedule.createddata.object is a subscription schedule

    Occurs whenever a new subscription schedule is created.

  • subscription_schedule.expiringdata.object is a subscription schedule

    Occurs 7 days before a subscription schedule will expire.

  • subscription_schedule.releaseddata.object is a subscription schedule

    Occurs whenever a new subscription schedule is released.

  • subscription_schedule.updateddata.object is a subscription schedule

    Occurs whenever a subscription schedule is updated.

  • tax_rate.createddata.object is a tax rate

    Occurs whenever a new tax rate is created.

  • tax_rate.updateddata.object is a tax rate

    Occurs whenever a tax rate is updated.

  • tax.settings.updateddata.object is a tax settings

    Occurs whenever tax settings is updated.

  • terminal.reader.action_faileddata.object is a terminal reader

    Occurs whenever an action sent to a Terminal reader failed.

  • terminal.reader.action_succeededdata.object is a terminal reader

    Occurs whenever an action sent to a Terminal reader was successful.

  • test_helpers.test_clock.advancingdata.object is a test helpers test clock

    Occurs whenever a test clock starts advancing.

  • test_helpers.test_clock.createddata.object is a test helpers test clock

    Occurs whenever a test clock is created.

  • test_helpers.test_clock.deleteddata.object is a test helpers test clock

    Occurs whenever a test clock is deleted.

  • test_helpers.test_clock.internal_failuredata.object is a test helpers test clock

    Occurs whenever a test clock fails to advance its frozen time.

  • test_helpers.test_clock.readydata.object is a test helpers test clock

    Occurs whenever a test clock transitions to a ready status.

  • topup.canceleddata.object is a topup

    Occurs whenever a top-up is canceled.

  • topup.createddata.object is a topup

    Occurs whenever a top-up is created.

  • topup.faileddata.object is a topup

    Occurs whenever a top-up fails.

  • topup.reverseddata.object is a topup

    Occurs whenever a top-up is reversed.

  • topup.succeededdata.object is a topup

    Occurs whenever a top-up succeeds.

  • transfer.createddata.object is a transfer

    Occurs whenever a transfer is created.

  • transfer.reverseddata.object is a transfer

    Occurs whenever a transfer is reversed, including partial reversals.

  • transfer.updateddata.object is a transfer

    Occurs whenever a transfer’s description or metadata is updated.

Stripe Shell
Test mode
Welcome to the Stripe Shell! Stripe Shell is a browser-based shell with the Stripe CLI pre-installed. Log in to your Stripe account and press Control + Backtick (`) on your keyboard to start managing your Stripe resources in test mode. - View supported Stripe commands: - Find webhook events: - Listen for webhook events: - Call Stripe APIs: stripe [api resource] [operation] (e.g., )
The Stripe Shell is best experienced on desktop.
$