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

Player Profile Webhook POST Data

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

activatedPoints

int

Player activated (previously 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,
  "totalPoints": 0,
  "pendingPoints": 0,
  "activatedPoints": 0,
  "referralCode": null,
  "referralDeepLink":null
}

Last updated