Skip to content

Current User

GET/v2/me

Returns the authenticated user's profile, including organization memberships and roles.

200 req/s

Try it

Response

json
{
  "id": 12345,
  "email": "user@example.com",
  "name": "John Doe",
  "languageCode": "en",
  "verified": true,
  "organizationIds": [100, 200],
  "organizationRoles": {
    "100": {
      "id": "admin",
      "name": "Admin",
      "isAdmin": true,
      "canUpdate": true,
      "canInvite": true,
      "canUpdateMentions": true
    }
  }
}

Response Fields

FieldTypeDescription
idinteger (int64)Unique identifier for the user
emailstringThe user's email address
namestringThe user's display name
accessTokenstringThe user's current access token
createdTimeinteger (int64)Timestamp of when the user account was created
lastLoginTimeinteger (int64)Timestamp of the user's most recent login
languageCodestringThe user's preferred language code (e.g. en, hr)
verifiedbooleanWhether the user's email has been verified
organizationIdsarray of integer (int64)List of organization IDs the user belongs to
organizationRolesobjectMap of organization ID to the user's role in that organization

Organization Role Object

FieldTypeDescription
idstringRole identifier (e.g. admin)
namestringHuman-readable role name
isAdminbooleanWhether this role has admin privileges
canUpdatebooleanWhether this role can update organization settings
canInvitebooleanWhether this role can invite new members
canUpdateMentionsbooleanWhether this role can update mentions

Built by Determ — Media Monitoring & Analytics