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