project.payment_method.deleted
A payment gateway is removed from a project.
When this fires
A creator removes a payment method from the project:
- Dashboard: the remove action on the project's Payment Methods page.
- Bot: the main bot's payment-method menu, "disconnect" on a connected gateway.
- REST:
DELETE /v1/projects/{project}/payment-methods/{method}. - MCP: the
delete_payment_methodtool.
It does not fire when:
- A gateway is switched off. That is
project.payment_method.updatedwithchanges.active, and the row stays. - A Stripe method is disconnected from its Connect account. The row is kept (unlinked and inactive) and that flow raises no event at all.
- The row was already gone. Deleting twice writes nothing the second time and emits nothing.
The row is soft-deleted, not destroyed. Subscriptions sold through the gateway keep pointing at it for refunds and history, and if the creator sets the same gateway up again in the same mode, the same row is revived. Expect this
idto come back to life, and remember there is noproject.payment_method.createdevent to tell you when it does.
Caveats
active: truehere means the creator removed a gateway that was live for new purchases. If you mirror the project's checkout options anywhere, this is the event to react to; a deactivation would have arrived asupdatedfirst.- Existing subscriptions are untouched. Their renewals, refunds and history keep referencing this gateway even though the row no longer appears in the project's payment methods list.
linkedis not in the snapshot, and nothing about the gateway's credentials or connected account is ever sent.
Related events
project.payment_method.updated: every change to the gateway before this one, including switching it off.project.deleted: a project going away takes its gateways with it without a per-gateway event.
Header Parameters
t=<unix seconds>,v1=<hex>: the HMAC-SHA256 of "<t>.<raw body>" under the endpoint's secret. Verify it before acting, and refuse a t more than 300 seconds from now. During a secret rotation a v0= signature under the previous secret may precede v1=.
The event's ULID, bare. The envelope's id is the same ULID prefixed evt_, so strip the prefix before comparing. Deduplicate on it: a retry carries the same id.
The event name, the same as the envelope's type.
Always application/json.
Always Subscriby-Webhooks/1.0.
Request Body
application/json
The signed JSON envelope posted to your endpoint.
TypeScript Definitions
Use the request body type in TypeScript.
The envelope every event is delivered in.
Response Body
Example Requests
/project.payment_method.deletedHow is this guide?