Endpoint
Authentication
Requires JWT authentication via Bearer token in theAuthorization header.
Request
No request body or parameters required. The user is identified from the JWT token.Headers
Bearer token obtained from login or registrationFormat:
Bearer <jwt_token>Response
Returns the authenticated user’s profile information.Unique user identifier (CUID)
User’s email address
User’s full name
User’s display name (shown in meetings)
URL to user’s avatar image (if set)
ISO 8601 timestamp of account creation
ISO 8601 timestamp of last profile update
Example Request
cURL
Example Response
Error Responses
401 Unauthorized
Missing or invalid JWT token.Use Cases
- Display user profile in application header/sidebar
- Verify authentication status on app load
- Retrieve user information for client-side state management
- Check user permissions and role
Related Endpoints
- Update User Profile - Update profile information
- Login - Authenticate and get JWT token
- Get User Profile - Get any user’s public profile