Skip to content

Event: subscription.resumed

Fired when a paused subscription is resumed. Recurring billing restarts.

A subscription has transitioned from Paused back to Active. Recurring billing resumes on the regular cadence.

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"
}
}
FieldTypeNotes
subscriptionIdUUIDThe Topiic Subscription id.
memberIdUUIDThe Topiic Member id.
planIdUUIDThe Plan the subscription is enrolled in.
statusstringAlways "Active".
resumedAtISO-8601 UTCWhen the resume took effect.
  1. Verify the signature, dedupe on event.id.
  2. Find the customer on your side via memberId.
  3. Restore entitlement — clear the paused flag, re-enable booking, surface membership perks.
  4. Return 2xx within 10 seconds.