cURL
curl --request GET \ --url https://jamquest-dev.techboo.net/api/v1/user/personal-info \ --header 'Authorization: Bearer <token>'
{ "status": "ok", "message": "<string>", "data": { "user": { "id": 123, "name": "<string>", "email": "[email protected]", "phone": "<string>", "is_dj": true, "wallet_balance": 123, "fee_upcoming_artist": 123, "fee_popular_song": 123, "online": 123, "played": 123, "city": "<string>", "state": "<string>", "country": "<string>", "latitude": 123, "longitude": 123, "radius": 123, "email_verified": true, "phone_verified": true, "rating": 123, "rating_count": 123 } } }
Retrieves the authenticated user’s personal information.
Access token obtained during login or registration. Use this token in the Authorization header for authenticated requests.
User information retrieved successfully
"ok"
Show child attributes