Session.ChangePermissions
For Session permission changes, events of this type are only sent to your webhook receiver when the permissions are directly modified by a parent in k-ID Family Connect. If a player has a birthday that would put them in a different age category, or greater than an age threshold for their jurisdiction which would allow them access to more features, the game must call the /session/get API to receive the changed permissions for the Session.
Fields
| Field | Type | Required | Description |
|---|---|---|---|
eventType | string | yes | Always "Session.ChangePermissions" |
data | object | yes | Session change permissions data |
data.id | string (UUID) | yes | Session ID |
data.productId | number | yes | Product ID |
Example
{
"eventType": "Session.ChangePermissions",
"data": {
"id": "78c299b2-5c33-4bde-84fe-8fc950fc7a96",
"productId": 42
}
}