project.updated
Any mutable project field changes.
When this fires
Any mutable field on a project changes — display name, handle, description, terms, privacy text, or other dashboard-editable settings. State-flag transitions (archive, restore) emit dedicated events instead.
Required ability
project:view — token must carry this at mint time to subscribe an endpoint to this event.
Payload
{
"id": "evt_01HX...",
"type": "project.updated",
"created_at": "2026-05-18T10:05:00Z",
"api_version": "2026-05-01",
"project_id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13",
"data": {
"project": {
"id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13",
"name": "Research Premium",
"handle": "research-premium",
"active": true,
"team_id": "a83f0d51-4c92-4b7e-8615-2fd9e70a3c86"
},
"changes": {
"description": {
"from": "Weekly research drops.",
"to": "Daily research drops and monthly AMAs."
}
}
}
}Field reference
| Field | Type | Notes |
|---|---|---|
id | string ULID | Unique event id, prefixed evt_. Use for idempotent processing. |
type | string | Always project.updated for this event. |
created_at | ISO 8601 timestamp | Server-side emission time. |
api_version | string | Webhook API contract version. |
project_id | string UUID | Project this event belongs to. |
data.project | object | Post-update project snapshot — id, name, handle, active, team_id only. |
data.changes | object<string, {from,to}> | Map of fields that changed. Keys are project attribute names; values are before/after. |
Caveats
- The
changesblock contains only the fields that mutated; unchanged fields are not included. changescan report fields theprojectsnapshot does not carry —description,terms,privacy,metrics,type,bot_id,banner_url, andphoto_url. Read the new value fromchanges[field].to, or fetch the project fromGET /v1/projects/{project}.POST /v1/projects/{project}/archiveand/restoreemit the dedicatedproject.archived/project.restoredevents, but a plainPATCHthat setsactivereports the flip inchanges.activeonproject.updatedinstead — handle both.- Rotating a bot through the Telegram bot flow does not trigger
project.updated— it emitsproject.bot.disconnected/project.bot.connected. Changingbot_idthroughPATCH /v1/projects/{project}does emitproject.updatedwithchanges.bot_idand emits noproject.bot.*event.
Related events
project.created— predecessor for anyproject.updatedevent.project.archived,project.restored— dedicated state-transition events.- Project events overview — back to family overview.
How is this guide?