curl -s -H 'Authorization: Bearer <your API token>' -X POST -H "Content-Type: application/json" \
-d '{"rows": [{"cells": [{"column": "<column ID>", "value": "Feed Baker"}]}]}' \
'https://coda.io/apis/v1/docs/<doc ID>/tables/<table ID>/rows' |
jq 'if .statusMessage? == null then "Inserted 1 row" else . end'
# => "Inserted 1 row"
{
"requestId": "abc-123-def-456",
"addedRowIds": [
"i-bCdeFgh",
"i-CdEfgHi"
]
}