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

# Obter Estágio do Pipeline

> Retorna os dados de um estágio específico do pipeline pelo ID.



## OpenAPI

````yaml /api-reference/openapi.json get /account-crm-pipeline-stage/{id}
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-stage/{id}:
    get:
      tags:
        - Estágios do Pipeline
      summary: Obter Estágio do Pipeline
      description: Retorna os dados de um estágio específico do pipeline pelo ID.
      operationId: getCrmPipelineStageById
      parameters:
        - $ref: '#/components/parameters/id'
      responses:
        '200':
          description: Estágio encontrado.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CrmPipelineStage'
        '404':
          $ref: '#/components/responses/Error404'
        '500':
          $ref: '#/components/responses/Error500'
components:
  parameters:
    id:
      name: id
      in: path
      required: true
      description: Identificador único do recurso.
      schema:
        type: string
  schemas:
    CrmPipelineStage:
      type: object
      properties:
        id:
          type: string
        pipelineId:
          type: string
        name:
          type: string
        order:
          type: integer
          nullable: true
        color:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
    ErrorMessage:
      type: object
      properties:
        error:
          type: string
          example: Recurso não encontrado.
  responses:
    Error404:
      description: Recurso não encontrado.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorMessage'
    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.

````