curl --request GET \
--url https://call.aiployees.com/api/user/me \
--header 'Authorization: Bearer <token>'{
"name": "John Doe",
"email": "john.doe@example.com",
"total_balance": 125.50
}
Get the authenticated user’s profile information
curl --request GET \
--url https://call.aiployees.com/api/user/me \
--header 'Authorization: Bearer <token>'{
"name": "John Doe",
"email": "john.doe@example.com",
"total_balance": 125.50
}
{
"name": "John Doe",
"email": "john.doe@example.com",
"total_balance": 125.50
}