> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sell.ia.proativia.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Criar Pipeline

> Cria um novo pipeline de CRM na conta autenticada.



## OpenAPI

````yaml /api-reference/openapi.json post /account-crm-pipeline
openapi: 3.0.3
info:
  title: WavUps CRM API
  description: >-
    API pública da plataforma WavUps CRM — gerencie leads, produtos, categorias,
    atendimentos, agendamentos, conversas e pipelines de CRM.
  version: 1.0.0
servers:
  - url: https://crm.wavups.com/api/v1
    description: Servidor de produção
security:
  - Token: []
paths:
  /account-crm-pipeline:
    post:
      tags:
        - Pipeline de CRM
      summary: Criar Pipeline
      description: Cria um novo pipeline de CRM na conta autenticada.
      operationId: createCrmPipeline
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCrmPipelineBody'
      responses:
        '201':
          description: Pipeline criado com sucesso.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CrmPipeline'
        '500':
          $ref: '#/components/responses/Error500'
components:
  schemas:
    CreateCrmPipelineBody:
      type: object
      required:
        - name
      properties:
        name:
          type: string
          description: Nome do pipeline.
        description:
          type: string
          description: Descricao do pipeline.
    CrmPipeline:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
    ErrorMessage:
      type: object
      properties:
        error:
          type: string
          example: Recurso não encontrado.
  responses:
    Error500:
      description: Erro interno no servidor.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorMessage'
  securitySchemes:
    Token:
      type: apiKey
      in: header
      name: Token
      description: Token de autenticacao gerado na plataforma WavUps CRM.

````