project.resource.deleted
Resource hard-deleted from a project.
This is the final event you will receive for the given resource_id. The row
is gone for good.
When this fires
A resource is hard-deleted by the creator. Subscriber access to that resource is revoked and downstream member.resource_* events fire as part of cleanup.
Required ability
project-resource:view-any — token must carry this at mint time to subscribe an endpoint to this event.
Payload
{
"id": "evt_01HX...",
"type": "project.resource.deleted",
"created_at": "2026-05-18T10:05:00Z",
"api_version": "2026-05-01",
"project_id": "prj_01HX...",
"data": {
"resource_id": "rsr_01HX...",
"project_id": "prj_01HX..."
}
}Field reference
| Field | Type | Notes |
|---|---|---|
id | string ULID | Unique event id, prefixed evt_. Use for idempotent processing. |
type | string | Always project.resource.deleted 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.resource_id | string ULID | Resource that was hard-deleted. |
data.project_id | string ULID | Mirrors top-level project_id. |
Caveats
- Cascading subscriber removals may emit
member.resource_removedbefore or after this event depending on queue timing. - After this event, API endpoints scoped to the resource respond
404.
Related events
project.resource.unlinked— typical predecessor.member.resource_removed— cascading subscriber-side cleanup.- Project events overview — back to family overview.
How is this guide?