GET
/
auth
/
user
/
me
curl --request GET \
  --url https://app.teable.io/api/auth/user/me \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "id": "<string>",
  "name": "<string>",
  "avatar": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>",
  "notifyMeta": {
    "email": true
  },
  "hasPassword": true,
  "isAdmin": true,
  "organization": {
    "id": "<string>",
    "name": "<string>",
    "isAdmin": true
  }
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
Successfully retrieved user information
id
string
required
name
string
required
email
string
required
notifyMeta
object
required
hasPassword
boolean
required
avatar
string | null
phone
string | null
isAdmin
boolean | null
organization
object