project.archived
Creator archives the project; access is suspended.
When this fires
A creator archives a project from the dashboard. Active subscriptions stop renewing, the public landing page returns a closed-state page, and the project's active flag flips to false.
Required ability
project:view-any — token must carry this at mint time to subscribe an endpoint to this event.
Payload
{
"id": "evt_01HX...",
"type": "project.archived",
"created_at": "2026-05-18T10:05:00Z",
"api_version": "2026-05-01",
"project_id": "prj_01HX...",
"data": {
"project": {
"id": "prj_01HX...",
"active": false
}
}
}Field reference
| Field | Type | Notes |
|---|---|---|
id | string ULID | Unique event id, prefixed evt_. Use for idempotent processing. |
type | string | Always project.archived for this event. |
created_at | ISO 8601 timestamp | Server-side emission time. |
api_version | string | Webhook API contract version. |
project_id | string ULID | Project this event belongs to. |
data.project.id | string ULID | Project identifier; matches the top-level project_id. |
data.project.active | boolean | Always false for this event. |
Caveats
- Archive is reversible — pair with
project.restoredfor the inverse transition. - Subscribers retain their existing access until their
ends_atticks over — expectsubscription.expiredevents to follow as those subscriptions wind down. - Hard-delete fires
project.deletedinstead and is final.
Related events
project.restored— paired transition.project.deleted— terminal state, replaces archive when the row is hard-deleted.- Project events overview — back to family overview.
How is this guide?