> ## Documentation Index
> Fetch the complete documentation index at: https://developers.nuvia.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Remover múltiplas linhas da tabela em batch



## OpenAPI

````yaml https://api.nuvia.ai/api/docs/user-json delete /v1/tables/{tableId}/rows/batch
openapi: 3.0.0
info:
  title: Nuvia API - Empresa
  description: Documentação da API para empresas
  version: '1.0'
  contact: {}
servers:
  - url: https://api.nuvia.ai
security: []
tags:
  - name: auth
    description: Autenticação
paths:
  /v1/tables/{tableId}/rows/batch:
    delete:
      tags:
        - tables
      summary: Remover múltiplas linhas da tabela em batch
      operationId: TableController_deleteRowsBatch
      parameters:
        - name: x-company-id
          in: header
          description: >-
            Identificador da empresa-alvo. Obrigatório apenas para API Keys
            globais (type=global). Ignorado para API Keys de empresa e usuários
            humanos.
          required: false
          schema:
            type: string
        - name: tableId
          required: true
          in: path
          description: ID da tabela
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteTableRowsBatchDto'
      responses:
        '200':
          description: ''
      security:
        - JWT-auth: []
components:
  schemas:
    DeleteTableRowsBatchDto:
      type: object
      properties:
        rowIds:
          minItems: 1
          maxItems: 500
          description: IDs das linhas a remover (1 a 500)
          example:
            - 507f1f77bcf86cd799439011
            - 507f1f77bcf86cd799439012
          type: array
          items:
            type: string
      required:
        - rowIds
  securitySchemes:
    JWT-auth:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: Token JWT de autenticação

````