User Details
This endpoint is required to support the core integration of Fast Track. We expect details of each user on the platform. The segmentation property can be used to return custom data.
⬇️ GET /userdetails/:userid
The Operator is required to provide a UserDetails endpoint, where Fast Track can fetch essential user data. Fast Track CRM will do lookups against this endpoint when certain events are received, for example Registration, User Update or when migrating user data through the Fast Track migration portal.
Fast Track have hard validation on the format in the response, please make sure to read through the outlined Data Types and table below with required properties
{
"address": "Tower Road, 120A",
"affiliate_reference": "AFF_1234A_UK",
"birth_date": "2015-03-02",
"city": "Sliema",
"country": "MT",
"currency": "EUR",
"deleted_at": "2024-01-01T01:00:58.721607Z",
"email": "tony@example.com",
"first_name": "Tony",
"is_blocked": false,
"is_excluded": false,
"language": "en",
"last_name": "Carrot",
"market": "gb"
"mobile": "21435678",
"mobile_prefix": "+356",
"origin": "sub.example.com",
"postal_code": "SLM 1030",
"registration_code": "ABC123",
"registration_date": "2015-03-02T08:27:58.721607Z",
"roles": ["VIP", "TEST_USER"],
"sex": "Male",
"title": "Mr",
"user_id": "7865312321",
"username": "PirateTony34",
"verified_at": "2015-03-02T08:27:58.721607Z",
"segmentation": {
"vip_level": 15,
"special_segmentation": "3D"
}
}
Required properties are marked with *
Key
Example Value
Description
address *
“Tower Road, 120A”
Address,
birth_date *
"1992-03-02"
The player's birth date, in
city *
“Sliema”
City,
country *
“MT”
Country of Registration, in ISO alpha-2 format
currency *
“EUR”
Currency code
deleted_at
“2024-01-01T01:00:58Z”
Date of player being deleted in RFC3339 format
email *
“email@email.com”
Email Address
first_name *
“Tony”
First Name
is_blocked *
false
If the player is
is_excluded *
false
If the player is
language *
“en”
Language Code
last_name *
“Carrot”
Last Name,
mobile *
“12345678”
Mobile Number
mobile_prefix *
“+356”
Mobile Prefix
origin *
“sub.example.com”
The of the user
postal_code *
“12345FT”
Postal Code,
roles *
["VIP", "TEST_USER”]
An array containing any from the platform,
sex *
“Male”
Player Sex,
title *
“Mr”
Player Title,
user_id *
“1234567”
The unique id of the user
username *
“PirateTony34”
Username
verified_at
“2015-03-02T8:27:58Z”
Date of player activating account or when KYC is completed in
registration_code *
“Exclusive”
Registration Code,
registration_date *
“2015-03-02T8:27:58Z”
Date of Registration in
affiliate_reference *
“AFF_12345”
Affiliate Reference
market *
“gb”
Market,
segmentation
"vip_level": 15, "special_segmentation": "3D"
Last updated
Was this helpful?