Skip to main content
DELETE
/
{endpointNamespace}
/
{projectName}
/
{tabSlug}
/
{rowId}
Delete Row
curl --request DELETE \
  --url https://api.sheetninja.io/{endpointNamespace}/{projectName}/{tabSlug}/{rowId} \
  --header 'Authorization: Bearer <token>'
{
  "deleted": 123
}

Authorizations

Authorization
string
header
required

The Bearer Token associated with your endpoint. This is only required if you have enabled protection for this endpoint.

Path Parameters

endpointNamespace
string
required

Your unique user namespace

projectName
string
required

The slugified name of your project

tabSlug
string
required

The slugified name of the specific worksheet (tab)

rowId
integer
required

The physical row number in the Google Sheet (Note: Row 1 is the header row)

Required range: x >= 2

Response

200 - application/json

Row successfully deleted

deleted
integer

The number of rows deleted (typically 1)