Customer Profile Webhook

Notifications webhook is triggered whenever an update occurs to customer's profile

Common webhook use cases include, but not limited to, the following:

  • Sync customer points and VIP tier status with your CRM system

Customer Profile Webhook POST Data

Parameter

Type

Description

playerUniqueId

string

Unique identifier for the customer in your database.

Could be database ID, random string, email or anything that uniquely identifies the customer.

mobileNumber

string

Customer mobile number

email

string

Customer email

levelName

string

Current customer VIP tier name

levelOrder

int

Current customer VIP tier order

walletPoints

int

Customer wallet points

pendingPoints

int

Customer pending points

activatedPoints

int

Customer activated (previously pending) points

referralCode

string

Customer referral code

referralDeepLink

string

Customer 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