curl --request GET \
--url https://api.example.com/api/users/me{
"id": "<string>",
"is_active": true,
"is_superuser": true,
"is_verified": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
}Returns information about the authenticated user making the request.
curl --request GET \
--url https://api.example.com/api/users/me{
"id": "<string>",
"is_active": true,
"is_superuser": true,
"is_verified": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
}Successful Response
Represents a user account with profile information.
Unique user identifier with 'intuser_' prefix
Whether this user account is currently active
Whether this user has superuser/admin privileges
Whether this user's email is verified
When this user account was created
When this user account was last updated
User's email address
User's first name
User's last name