Profile API Documentation
These routes handle user profile management, notifications, vault operations, and user settings.
Overview
Endpoints
1. GET /profile/notifications
/profile/notificationsArray<{
title: string;
message: string;
date: number;
}>;[
{
"title": "Welcome",
"message": "Welcome to Casino!",
"date": 1703001234567
}
]2. DELETE /profile/notifications
/profile/notifications3. GET /profile/user/:id
/profile/user/:id4. POST /profile/vault/lock
/profile/vault/lock5. POST /profile/vault/unlock
/profile/vault/unlock6. PUT /profile/trade-url
/profile/trade-url7. PUT /profile/email
/profile/emailUsage Examples
Frontend Integration
Notes
Last updated