GET Deprecated Auth User Privacy Settings
/web/user/privacy/settings
Retrieve the authenticated player's privacy settings using a valid JWT. Supports query parameter for localization (lang). Requires an Authorization header with the JWT from login.
Headers:
- Authorization:
Bearer <jwt>(JWT obtained during login).
Query parameters:
- lang: Language code for localized content (default:
en).
The response includes:
- popup_shown: Whether the privacy popup has been shown to the user.
- privacy: Current privacy state (true/false).
{
"code": 0,
"message": "Success",
"traceID": "410b98229c4a2ab35edddb49df774922",
"data": {
"popup_shown": true,
"privacy": false
}
}