Skip to main content
GET
/
table
/
column
/
{columnId}
Retrieve a column
curl --request GET \
  --url https://app.myhero.so/table/column/{columnId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "_id": "<string>",
    "projectId": "<string>",
    "tableId": "<string>",
    "workspaceId": "<string>",
    "isIdentifier": false,
    "name": "<string>",
    "slug": "<string>",
    "data": {
      "selectItems": [
        {
          "id": "<string>",
          "label": "<string>",
          "color": "<string>"
        }
      ],
      "number": {
        "format": "<string>",
        "decimalPlaces": 123
      },
      "oneMany": {
        "tableId": "<string>"
      }
    },
    "createdAt": 123,
    "updatedAt": 123,
    "originId": "<string>",
    "description": "<string>",
    "isDeleted": false
  }
}

Authorizations

Authorization
string
header
required

HERO personal access token

Path Parameters

columnId
string
required
Minimum string length: 1

Response

200 response

data
object
required