GET
/
organization
/
{organizationId}
/
user
/
{userId}
curl --request GET \
  --url https://app.teable.cn/api/organization/%7BorganizationId%7D/user/%7BuserId%7D \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "id": "<string>",
  "name": "<string>",
  "email": "<string>",
  "avatar": "<string>",
  "organization": {
    "id": "<string>",
    "name": "<string>"
  },
  "departments": [
    {
      "id": "<string>",
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required
userId
string
required

Response

200 - application/json
Get organization user
id
string
required
name
string
required
email
string
required
organization
object
required
avatar
string
departments
object[]