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

# Transfer Active Call



## OpenAPI

````yaml /openapi.json post /v1/calls/transfer
openapi: 3.0.3
info:
  title: Callvrse Telephony Gateway API
  description: >-
    Unified programmable voice gateway API for calls, carriers, DIDs, agent
    sessions, and routing.
  version: 1.0.0
servers:
  - url: http://127.0.0.1:8080
    description: Local development
security: []
paths:
  /v1/calls/transfer:
    post:
      tags:
        - Calls
      summary: Transfer Active Call
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                call_control_id:
                  type: string
                to:
                  type: string
                  example: '+15559998888'
              required:
                - call_control_id
                - to
      responses:
        '200':
          description: Call transferred
      security:
        - BearerAuth: []
        - CookieAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Enter your Tenant API key (or use SANDBOX_API_KEY)
    CookieAuth:
      type: apiKey
      in: cookie
      name: callvrse_session
      description: HttpOnly session cookie issued on login

````