API Version 3
cURL
curl --request GET \ --url https://paradigm.lighton.ai/api/v3/users/me \ --header 'Authorization: Bearer <token>'
{ "profile": { "id": 123, "username": "<string>", "full_name": "<string>", "email": "jsmith@example.com" }, "company": { "name": "<string>", "id": 123 }, "permissions": { "is_admin": true, "can_manage_documents": true, "can_manage_api_keys": true }, "settings": { "language": "<string>", "skip_help_step": true }, "compliance": { "terms_accepted": true } }
Returns information on the authenticated user including:
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Serializer for GET /api/v3/users/me/ endpoint. Returns organized user profile data with logical grouping.
Show child attributes