> ## 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.

# Adicionar linhas à tabela



## OpenAPI

````yaml https://api.nuvia.ai/api/docs/user-json post /v1/tables/{id}/rows
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/{id}/rows:
    post:
      tags:
        - tables
      summary: Adicionar linhas à tabela
      operationId: TableController_addRows
      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: id
          required: true
          in: path
          description: ID da tabela
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddTableRowsDto'
      responses:
        '201':
          description: ''
      security:
        - JWT-auth: []
components:
  schemas:
    AddTableRowsDto:
      type: object
      properties:
        rows:
          description: Linhas a serem adicionadas
          type: array
          items:
            type: object
      required:
        - rows
  securitySchemes:
    JWT-auth:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: Token JWT de autenticação

````