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

# Move Selected Prospects

> Moves prospects between lists or into a new list inside the target campaign. Pass one item in `prospectsIds` for a single-prospect case, or many items for a bulk operation. The backend returns which prospects already existed at the destination or exceeded plan limits.



## OpenAPI

````yaml https://api.goextrovert.com/client/v2/docs-json post /client/v2/prospects/move
openapi: 3.0.0
info:
  title: Extrovert Client API
  description: >-
    Public API for Extrovert platform integration. Use your API key for
    authentication.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.goextrovert.com/
    description: API Server
security: []
tags: []
paths:
  /client/v2/prospects/move:
    post:
      tags:
        - Prospects
      summary: Move Selected Prospects
      description: >-
        Moves prospects between lists or into a new list inside the target
        campaign. Pass one item in `prospectsIds` for a single-prospect case, or
        many items for a bulk operation. The backend returns which prospects
        already existed at the destination or exceeded plan limits.
      operationId: ProspectsClientApiController_move
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MoveRequestDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoveResponseDto'
        '401':
          description: Invalid or missing API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientApiErrorResponseDto'
      security:
        - api-key: []
components:
  schemas:
    MoveRequestDto:
      type: object
      properties:
        prospectsIds:
          type: array
          items:
            type: string
            format: uuid
          description: Prospect record ids to move. Ignored when `areAllSelected` is true.
        areAllSelected:
          type: boolean
          description: >-
            If true, the move scope is controlled by `variant` + `oldListId` and
            `prospectsIds` is ignored. If false, only the ids in `prospectsIds`
            are used (and `variant` is ignored).
        variant:
          type: string
          enum:
            - all
            - list
            - campaign
          description: >-
            Scope of the bulk selection. Only used when `areAllSelected` is
            true; ignored otherwise. `all` — all visible prospects. `list` — a
            specific prospect list (use together with `oldListId`). `campaign` —
            every list in a campaign.
        oldListId:
          type: string
          description: Current list id, if the move starts from a specific list.
          format: uuid
        newListId:
          type: string
          description: Destination list id, if reusing an existing list.
          format: uuid
        newListName:
          type: string
          description: New destination list name, if the backend should create it.
        campaignId:
          type: string
          format: uuid
          description: Target campaign id.
      required:
        - prospectsIds
        - areAllSelected
        - variant
        - campaignId
    MoveResponseDto:
      type: object
      properties:
        status:
          type: string
          description: Response status
          enum:
            - success
        data:
          type: object
          properties:
            existedUsers:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    description: Entity ID
                    example: 8d256aa6-9b12-49a7-93ee-bf41634b5b60
                  name:
                    type: string
                    description: Entity name
                  description:
                    description: Optional extra description, if available
                    type: string
                required:
                  - id
                  - name
              description: Prospects that already existed in the destination
            outOfLimitUsers:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    description: Entity ID
                    example: 8d256aa6-9b12-49a7-93ee-bf41634b5b60
                  name:
                    type: string
                    description: Entity name
                  description:
                    description: Optional extra description, if available
                    type: string
                required:
                  - id
                  - name
              description: Prospects rejected because of plan or quota limits
            totalUsersLimit:
              type: number
              description: Current total prospect limit
            newListId:
              type: string
              format: uuid
              description: Destination list id after the move
          description: Bulk move result
        message:
          type: string
          description: Success message
          example: Operation completed successfully
      required:
        - status
        - data
        - message
    ClientApiErrorResponseDto:
      type: object
      properties:
        status:
          type: string
          description: Response status
          example: error
          enum:
            - error
        data:
          type: object
          description: Response data
          example: null
        message:
          type: string
          description: Error message
          example: An error occurred while processing the request
      required:
        - status
        - data
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-API-Key
      description: API Key for authentication

````