This call will also create a new column inside your new row.
POST
/projects/{projectId}/rows
curl \
--request POST 'https://tadatodo.com/api/projects/Pae77f34bbf9/rows' \
--header "X-API-Key: $API_KEY" \
--data '{"columnName":"my column","name":"my row"}'
Request examples
{
"columnName": "my column",
"name": "my row"
}
Response examples (200)
{
"id": "string",
"name": "string",
"plugins": [
{
"author": "string",
"configUrl": "string",
"description": "string",
"flair": "string",
"id": "string",
"name": "string",
"uiConfigType": "string"
}
],
"rows": [
{
"columns": [
{
"id": "string",
"name": "string"
}
],
"id": "string",
"name": "string"
}
]
}