Skip to main content
GET
/
table
/
project
/
{projectId}
List tables in a project
curl --request GET \
  --url https://app.myhero.so/table/project/{projectId} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "_id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "rows": [
        "<string>"
      ],
      "columns": [
        "<string>"
      ],
      "isStatic": false,
      "ownerId": "<string>",
      "projectId": "<string>",
      "workspaceId": "<string>",
      "createdAt": 123,
      "updatedAt": 123,
      "originId": "<string>",
      "description": "<string>",
      "icon": {
        "name": "<string>",
        "color": "<string>"
      },
      "isDeleted": false
    }
  ]
}

Authorizations

Authorization
string
header
required

HERO personal access token

Path Parameters

projectId
string
required
Minimum string length: 1

Response

200 response

data
object[]
required