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

# Update Pipeline

> Update a pipeline's name, description, or archived flag. Only fields present in the body are touched.



## OpenAPI

````yaml PATCH /crm/pipelines/{pipeline_id}/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /crm/pipelines/{pipeline_id}/:
    patch:
      tags:
        - crm
      summary: Update Pipeline
      description: >-
        Update a pipeline's name, description, or archived flag. Only fields
        present in the body are touched.
      operationId: crm_pipelines_partial_update
      parameters:
        - in: path
          name: pipeline_id
          schema:
            type: string
            format: uuid
          required: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedPipelineUpdateRequestRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedPipelineUpdateRequestRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedPipelineUpdateRequestRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                additionalProperties: {}
          description: Updated pipeline with stages.
        '400':
          description: Name conflict with another active pipeline.
        '404':
          description: Pipeline not found.
      security:
        - jwtAuth: []
        - {}
components:
  schemas:
    PatchedPipelineUpdateRequestRequest:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        description:
          type: string
        is_archived:
          type: boolean
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````