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

# Moves a connector (settings, state and transaction history) from one workspace to another, or renames it within the same workspace. The original connector is removed.

> Moves a connector (settings, state and transaction history) from one workspace to another, or renames it within the same workspace. The original connector is removed.



## OpenAPI

````yaml 26.3/cloud/en/api-reference/openapi.json POST /moveConnector
openapi: 3.0.1
info:
  title: RSSBus OpenAPI
  version: 26.3.9712.0
servers:
  - url: '{baseUrl}'
    variables:
      baseUrl:
        default: https://arc.example.com/api.rsc
        description: >-
          Base URL of your Arc instance, including scheme and application path
          (e.g. https://arc.example.com/api.rsc).
security: []
paths:
  /moveConnector:
    post:
      tags:
        - moveConnector
      summary: >-
        Moves a connector (settings, state and transaction history) from one
        workspace to another, or renames it within the same workspace. The
        original connector is removed.
      description: >-
        Moves a connector (settings, state and transaction history) from one
        workspace to another, or renames it within the same workspace. The
        original connector is removed.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/moveConnector_input'
        required: true
      responses:
        '200':
          description: The action result
        default:
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CDataError'
      security:
        - authtoken_header: []
        - basic: []
        - authtoken_query: []
components:
  schemas:
    moveConnector_input:
      type: object
      required:
        - WorkspaceId
        - ConnectorId
        - NewConnectorId
      properties:
        WorkspaceId:
          type: string
          description: The Id of the workspace where the source connector resides.
        ConnectorId:
          type: string
          description: The Id of the connector to move.
        NewWorkspaceId:
          type: string
          description: >-
            The Id of the destination workspace. If not specified, the connector
            is renamed within the source workspace.
        NewConnectorId:
          type: string
          description: The Id of the connector in the destination workspace.
        Force:
          type: string
          description: >-
            When true, cross-workspace moves may disconnect existing workflow
            connections and continue. Default is false.
    CDataError:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/CDataInError'
    CDataInError:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
  securitySchemes:
    authtoken_header:
      type: apiKey
      in: header
      name: x-cdata-authtoken
    basic:
      scheme: basic
      type: http
    authtoken_query:
      type: apiKey
      in: query
      name: '@authtoken'

````