Skip to main content
DELETE
/
api
/
lists
/
{id}
/
rows
Bulk delete rows from a list
curl --request DELETE \
  --url https://app.puffle.ai/api/lists/{id}/rows \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "rowIds": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
'
{
  "success": true,
  "deleted": 3
}

Overview

Delete one or more rows from a list. Cells cascade-delete automatically. Silent no-op for row IDs that don’t exist or don’t belong to this list — the response deleted count equals the input length.
This operation shares the URL path /api/lists/{id}/rows with other verbs. See the sibling page for related operations on the same resource.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

List UUID.

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Body

application/json

Bulk delete rows. All cells cascade-delete with the rows.

rowIds
string<uuid>[]
required

Non-empty array of row UUIDs to delete from the list.

Minimum array length: 1
Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Response

Rows deleted.

success
enum<boolean>
required
Available options:
true
deleted
integer
required

Count of rows requested for deletion (equals rowIds.length).

Required range: 0 <= x <= 9007199254740991