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

# Deploy a copilot config to another copilot

> Copies `agents`, `workflows`, and `sdk_ui` from the source copilot (`:id`) to the target copilot (`target_copilot_id`). Both must belong to the caller's org. Use this to promote dev → staging → prod.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/copilots/{id}/deploy
openapi: 3.1.0
info:
  title: Sidenet API
  version: 1.0.0
  description: >-
    Custom HTTP endpoints exposed by the Sidenet Mastra server. All routes
    require a bearer token and resolve org context from the API key (or the
    `X-Organization-Id` header). This reference is generated from the live route
    definitions in `src/mastra/routes`.
servers:
  - url: ''
security:
  - bearerAuth: []
paths:
  /v1/copilots/{id}/deploy:
    servers:
      - url: /
    post:
      tags:
        - Copilots
      summary: Deploy a copilot config to another copilot
      description: >-
        Copies `agents`, `workflows`, and `sdk_ui` from the source copilot
        (`:id`) to the target copilot (`target_copilot_id`). Both must belong to
        the caller's org. Use this to promote dev → staging → prod.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: X-Organization-Id
          in: header
          required: false
          schema:
            type: string
          description: >-
            Organization to scope the request to. Optional when authenticating
            with an org API key (the org is taken from the key; if sent, it must
            match). Required when authenticating with the trusted key.
        - name: X-User-Id
          in: header
          required: false
          schema:
            type: string
          description: >-
            End-user identity for the request; user-scoped data (threads,
            memory) resolves to `{orgId}_{userId}`. Required by endpoints that
            read or write user-scoped resources. A `userId` query param (or body
            field, where documented) is accepted as a fallback.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - target_copilot_id
              properties:
                target_copilot_id:
                  type: string
      responses:
        '200':
          description: Deployed
        '400':
          description: Invalid body or missing headers
        '404':
          description: Source or target copilot not found
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Org API key (scopes the request to its organization) or the shared
        trusted key (requires `X-Organization-Id` on every request).

````