Early bird discounts live! Claim your offer

subscription.created

New subscription created via access-code redemption or cardless trial.

This event does not fire for paid checkouts. A card, wallet, or crypto purchase emits subscription.activated instead. If you are building access control for a paying audience, subscribe to both.

When this fires

Exactly two paths emit this event:

  • Access-code redemption — a subscriber redeems a code against a plan.
  • Cardless trial start — a subscriber begins a trial that took no payment method.

Both are zero-payment acquisitions. Every paid acquisition — every payment provider, both recurring subscriptions and one-time passes — emits subscription.activated instead, and never emits subscription.created.

Required ability

project-subscription:view — token must carry this at mint time to subscribe an endpoint to this event.

Payload

The data keys differ by path. Absent keys are omitted entirely, not sent as null.

Access-code redemption
{
  "id": "evt_01HX...",
  "type": "subscription.created",
  "created_at": "2026-05-18T10:05:00Z",
  "api_version": "2026-05-01",
  "project_id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13",
  "data": {
    "subscription_id": "5b7e2d40-1a86-4c39-97f2-e83d0b16c5a4",
    "project_id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13",
    "plan_id": "c4e82f16-93a7-4d5b-b81c-6e0f27a94d3b",
    "subscriber_id": "2a91c4e7-6f38-4b52-8e0d-9c1a7b3f5d80",
    "access_code": "SLATE-SUNDAY-4F2A9"
  }
}
Cardless trial start
{
  "id": "evt_01HX...",
  "type": "subscription.created",
  "created_at": "2026-05-18T10:05:00Z",
  "api_version": "2026-05-01",
  "project_id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13",
  "data": {
    "subscription_id": "5b7e2d40-1a86-4c39-97f2-e83d0b16c5a4",
    "plan_id": "c4e82f16-93a7-4d5b-b81c-6e0f27a94d3b",
    "subscriber_id": "2a91c4e7-6f38-4b52-8e0d-9c1a7b3f5d80",
    "trial_ends_at": "2026-05-25T10:05:00Z"
  }
}

Field reference

FieldTypeNotes
idstring ULIDUnique event id, prefixed evt_. Use for idempotent processing.
typestringAlways subscription.created for this event.
created_atISO 8601 timestampServer-side emission time.
api_versionstringWebhook API contract version.
project_idstring UUIDProject this event belongs to.
data.subscription_idstring UUIDSubscription identifier.
data.project_idstring UUIDAccess-code path only. Duplicates the envelope project_id.
data.plan_idstring UUIDPlan the subscription is on.
data.subscriber_idstring UUIDThe subscriber's project-scoped user id.
data.trial_ends_atISO 8601 timestampCardless-trial path only. Absent on the access-code path.
data.access_codestringAccess-code path only. The full redeemed code, not masked. Absent on the trial path.

access_code carries the complete code. It is already consumed and cannot be redeemed again, but treat it as you would any other customer identifier and avoid logging it into systems you do not control.

Caveats

  • Do not treat this as the universal "a subscription exists" signal. For paid projects it never fires. The reliable pattern is to subscribe to both subscription.created and subscription.activated and de-duplicate on data.subscription_id.
  • The access-code path also emits access_code.redeemed and either member.joined or member.trial_joined for the same subscription.
  • The cardless-trial path also emits subscription.trial_started and member.trial_joined.
  • The POST /v1/webhook-endpoints/{endpoint}/test endpoint sends a synthetic subscription.created payload regardless of your project's payment configuration. A successful test does not prove this event will fire in production.

How is this guide?

On this page

Subscriby is a product designed by you — for you.

No boardroom full of executives deciding what we ships next. Our roadmap always shaped by you with your feedback.

Share feedback or a request