Skip to content

Read Users Me

GET
/auth/me
curl --request GET \
--url http://localhost:8000/auth/me \
--header 'Authorization: Bearer <token>'

Successful Response

Media typeapplication/json
UserResponse
object
created_at
Any of:
string format: date-time
id
required
Id
integer
is_active
required
Is Active
boolean
is_admin
required
Is Admin
boolean
last_login
Any of:
string format: date-time
profile_image
Any of:
string
role
Role
string
default: user
username
required
Username
string
Example
{
"role": "user"
}