team.member.removed
Collaborator removed or leaves.
project_id is always null for team events.When this fires
A collaborator is removed from the team or leaves voluntarily.
Required ability
team:view-any — token must carry this at mint time to subscribe an endpoint to this event.
Payload
{
"id": "evt_01HX...",
"type": "team.member.removed",
"created_at": "2026-05-22T10:05:00Z",
"api_version": "2026-05-01",
"project_id": null,
"data": {
"team_id": "tem_01HX...",
"user_id": "usr_01HX..."
}
}Field reference
| Field | Type | Notes |
|---|---|---|
id | string ULID | Unique event id, prefixed evt_. Use for idempotent processing. |
type | string | Always team.member.removed for this event. |
created_at | ISO 8601 timestamp | Server-side emission time. |
api_version | string | Webhook API contract version. |
project_id | null | Always null — account-level event. |
data.team_id | string ULID | Team the collaborator was on. |
data.user_id | string ULID | User id of the removed collaborator. |
Caveats
- This event does not surface whether the removal was voluntary or involuntary.
- Project-scoped role assignments tied to the collaborator are revoked, but no per-project event fires.
Related events
team.member.invited— predecessor in the lifecycle.team.member.joined— predecessor.- Team events overview — back to family overview.
How is this guide?