GET
/
user
/
last-visit
/
list-base
curl --request GET \
  --url https://app.teable.io/api/user/last-visit/list-base \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "total": 123,
  "list": [
    {
      "resourceType": "base",
      "resourceId": "<string>",
      "resource": {
        "id": "<string>",
        "name": "<string>",
        "spaceId": "<string>",
        "icon": "<string>",
        "role": "owner",
        "restrictedAuthority": true
      },
      "lastVisitTime": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Returns data about user last visit base.

The response is of type object.