Skip to main content
POST
/
v1
/
tables
/
{tableId}
/
rows
/
batch
Remover múltiplas linhas da tabela em batch
curl --request POST \
  --url https://api.nuvia.ai/v1/tables/{tableId}/rows/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "rowIds": [
    "507f1f77bcf86cd799439011",
    "507f1f77bcf86cd799439012"
  ]
}
'

Authorizations

Authorization
string
header
required

Token JWT de autenticação

Headers

x-company-id
string

Identificador da empresa-alvo. Obrigatório apenas para API Keys globais (type=global). Ignorado para API Keys de empresa e usuários humanos.

Path Parameters

tableId
string
required

ID da tabela

Body

application/json
rowIds
string[]
required

IDs das linhas a remover (1 a 500)

Required array length: 1 - 500 elements
Example:
[
"507f1f77bcf86cd799439011",
"507f1f77bcf86cd799439012"
]

Response

200 - undefined