Skip to main content
POST
/
table
/
row
Create a row
curl --request POST \
  --url https://app.myhero.so/table/row \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tableId": "<string>"
}
'
{
  "data": {
    "_id": "<string>",
    "projectId": "<string>",
    "tableId": "<string>",
    "workspaceId": "<string>",
    "ownerId": "<string>",
    "createdAt": 123,
    "updatedAt": 123,
    "originId": "<string>",
    "isDeleted": false
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

Use this file to discover all available pages before exploring further.

Appends a new row to the given table and creates blank cells for every existing column. Returns the created row document.

Authorizations

Authorization
string
header
required

HERO personal access token

Body

application/json
tableId
string
required
Minimum string length: 1

Response

200 response

data
object
required