Skip to main content

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

FieldTypeRequiredDescription
eventTypestringyesAlways "Session.Delete"
dataobjectyesSession deletion data
data.idstring (UUID)yesSession ID
data.productIdnumberyesProduct ID

Example

{
"eventType": "Session.Delete",
"data": {
"id": "2d064cf7-0726-4193-b19a-8bd387937e60",
"productId": 42
}
}