Skip to main content
POST
/
table
/
get-tables
Retrieve multiple tables
curl --request POST \
  --url https://app.myhero.so/table/get-tables \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": [
    "<string>"
  ]
}
'
{
  "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

Body

application/json
data
string[]
required
Minimum array length: 1
Minimum string length: 1

Response

200 response

data
object[]
required