curl -X DELETE https://api.crewship.dev/v1/tables/tbl_abc123xyz789/rows/row_abc123xyz789 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true
}
{
"error": {
"message": "Row not found"
}
}
Tables
Delete Row
Delete a single row
DELETE
/
v1
/
tables
/
{id}
/
rows
/
{rowId}
curl -X DELETE https://api.crewship.dev/v1/tables/tbl_abc123xyz789/rows/row_abc123xyz789 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true
}
{
"error": {
"message": "Row not found"
}
}
Path Parameters
string
required
Table ID
string
required
Row ID
Response
boolean
true when the row was deletedcurl -X DELETE https://api.crewship.dev/v1/tables/tbl_abc123xyz789/rows/row_abc123xyz789 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true
}
{
"error": {
"message": "Row not found"
}
}