Skip to main content
GET
/
v1
/
auth
/
me
Me
curl --request GET \
  --url https://api.example.com/v1/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "user": {},
  "workspace": {},
  "membership": {},
  "permissions": [
    "<string>"
  ],
  "organization": {},
  "onboarding_complete": true,
  "feature_flags": {},
  "impersonation": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

user
User · object
required
workspace
Workspace · object
required
membership
Membership · object
required
permissions
string[]
required
organization
Organization · object
onboarding_complete
boolean
default:true
feature_flags
Feature Flags · object
impersonation
Impersonation · object