Session.Delete
Emitted when a session is deleted. This event fires when a parent revokes all access to the product for a player through Family Connect, effectively removing the player's session entirely.
When you receive this event, the player must complete the age gate and consent flow again to regain access to your product.
Fields
| Field | Type | Required | Description |
|---|---|---|---|
eventType | string | yes | Always "Session.Delete" |
data | object | yes | Session deletion data |
data.id | string (UUID) | yes | Session ID |
data.productId | number | yes | Product ID |
Example
{
"eventType": "Session.Delete",
"data": {
"id": "2d064cf7-0726-4193-b19a-8bd387937e60",
"productId": 42
}
}