Fired when a paused subscription is resumed. Recurring billing restarts.
When it fires
Section titled “When it fires”A subscription has transitioned from Paused back to Active. Recurring billing resumes on the regular cadence.
Headers
Section titled “Headers”Same envelope as other events: Topiic-Event-Id, Topiic-Idempotency-Key, Topiic-Signature. See Verifying signatures.
{ "id": "7a2c8e91-…", "type": "subscription.resumed", "createdAt": "2026-06-01T09:15:22.118Z", "data": { "subscriptionId": "3c4d5e6f-7a8b-9c0d-1e2f-3a4b5c6d7e8f", "memberId": "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d", "planId": "b6a8a5b8-7b3c-4d1e-9c2a-1f9e8d7c6b5a", "status": "Active", "resumedAt": "2026-06-01T09:15:22.118Z" }}data fields
Section titled “data fields”| Field | Type | Notes |
|---|---|---|
subscriptionId | UUID | The Topiic Subscription id. |
memberId | UUID | The Topiic Member id. |
planId | UUID | The Plan the subscription is enrolled in. |
status | string | Always "Active". |
resumedAt | ISO-8601 UTC | When the resume took effect. |
What to do on receipt
Section titled “What to do on receipt”- Verify the signature, dedupe on
event.id. - Find the customer on your side via
memberId. - Restore entitlement — clear the
pausedflag, re-enable booking, surface membership perks. - Return 2xx within 10 seconds.