curl -s -H 'Authorization: Bearer <your API token>' -X DELETE -H "Content-Type: application/json" \
-d '{"rowIds": ['i-aBcDeFgH', 'i-AbCdEfGh']}' \
'https://coda.io/apis/v1/docs/<doc ID>/tables/<table ID>/rows' |
jq 'if .statusMessage? == null then "Deleted 2 rows" else . end'
# => "Deleted 2 rows"
{
"requestId": "abc-123-def-456",
"rowIds": [
"i-bCdeFgh",
"i-CdEfgHi"
]
}