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

# Pipelines transfer card

> Transfer an opportunity / ticket to another pipeline.



## OpenAPI

````yaml POST /pipelines/{pipeline_id}/opportunities/{opportunity_id}/transfer-to-pipeline
openapi: 3.0.0
info:
  title: Fliqr AI API
  version: '1.1'
  description: >-
    REST API for Fliqr AI. Authenticate every request with the `X-ACCESS-TOKEN`
    header.
servers:
  - url: https://app.fliqr.ai/api
    description: Production
security:
  - APIKeyHeader: []
tags:
  - name: Accounts
  - name: Contacts
  - name: AI Agents
  - name: Pipelines
  - name: Ecommerce
  - name: Appointment Management
  - name: Templates
paths:
  /pipelines/{pipeline_id}/opportunities/{opportunity_id}/transfer-to-pipeline:
    post:
      tags:
        - Pipelines
      summary: Pipelines Transfer Card
      description: Transfer an opportunity / ticket to another pipeline.
      operationId: pipelinesTransferCard
      parameters:
        - name: pipeline_id
          in: path
          required: true
          schema:
            type: number
        - name: opportunity_id
          in: path
          required: true
          schema:
            type: number
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                target_pipeline_id:
                  type: number
                target_stage_id:
                  type: number
              example:
                target_pipeline_id: 123456
                target_stage_id: 654321
        required: true
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                example:
                  success: true
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-ACCESS-TOKEN
      description: >-
        API access token from your Fliqr AI dashboard (**Settings → API**). Send
        it in the `X-ACCESS-TOKEN` header on every request.

````