project.created
A creator registers a new project.
When this fires
A creator registers a new project. The event lands the moment the new project becomes available for further configuration.
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.created",
"created_at": "2026-05-18T10:05:00Z",
"api_version": "2026-05-01",
"project_id": "prj_01HX...",
"data": {
"project": {
"id": "prj_01HX...",
"name": "Research Premium",
"handle": "research-premium",
"description": "Deep-dive research notes and weekly AMAs.",
"active": true,
"team_id": "tem_01HX..."
}
}
}Field reference
| Field | Type | Notes |
|---|---|---|
id | string ULID | Unique event id, prefixed evt_. Use for idempotent processing. |
type | string | Always project.created 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.name | string | Display name shown in the dashboard and on my.memberpass.net/.... |
data.project.handle | string | URL slug for the public landing page. |
data.project.description | string | null | Optional creator-supplied description. |
data.project.active | boolean | Always true at creation; flips on archive / restore. |
data.project.team_id | string ULID | Team that owns the project (a personal team for solo creators). |
Caveats
- Use the
MP-Event-Idheader to dedupe deliveries — this is the value that lands inid. project.createdis always the first event you will receive for a givenproject_id. Subsequent events on the same project may interleave.- Archived/restored states are a separate event pair — listen for
project.archivedandproject.restoredrather than relying ondata.project.activeflipping insideproject.updated.
Related events
project.updated— fires on subsequent mutable-field changes.project.archived— paired withproject.restoredfor soft-disable transitions.- Project events overview — back to family overview.
How is this guide?