Player Profile Webhook
Notifications webhook is triggered whenever an update occurs to player's profile
Common webhook use cases include, but not limited to, the following:
- Sync player points and level status with your CRM system
Parameter | Type | Description |
playerUniqueId | string | Unique identifier for the player in your database. Could be database ID, random string, email or anything that uniquely identifies the player. |
mobileNumber | string | Player mobile number |
email | string | Player email |
levelName | string | Current player level name |
levelOrder | int | Current player level order |
walletPoints | int | Player wallet points |
pendingPoints | int | Player pending points |
referralCode | string | Player referral code |
referralDeepLink | string | Player referral deep link for mobile apps |
{
"playerUniqueId": null,
"mobileNumber": null,
"email": null,
"levelName": null,
"levelOrder": 0,
"walletPoints": 0,
"pendingPoints": 0,
"referralCode": null,
"referralDeepLink":null
}
Last modified 11mo ago