GET
/
base
/
{baseId}
/
authority-matrix-role
curl --request GET \
  --url https://app.teable.cn/api/base/%7BbaseId%7D/authority-matrix-role \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "baseId": "<string>",
    "createdTime": "<string>",
    "enabledTime": "<string>",
    "users": [
      {
        "id": "<string>",
        "name": "<string>",
        "email": "<string>",
        "avatar": "<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

baseId
string
required

Response

200 - application/json
Successful response
id
string
required
name
string
required
baseId
string
required
createdTime
string
required
description
string
enabledTime
string
users
object[]
departments
object[]