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

# Move contacts between lists

> Move contacts between lists.

Responses include direct Enginy app URLs when available. The response includes `sourceListAppUrl` and `destinationListAppUrl`. MCP agents should return those URLs to users whenever they are present in the response.

    > **Required scope:** `LISTS_WRITE`
    >
    > **Rate limit:** 30 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json post /v1/lists/{fromListId}/contacts/move
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/lists/{fromListId}/contacts/move:
    post:
      tags:
        - Lists
      summary: Move contacts between lists
      description: >-
        Move contacts between lists.


        Responses include direct Enginy app URLs when available. The response
        includes `sourceListAppUrl` and `destinationListAppUrl`. MCP agents
        should return those URLs to users whenever they are present in the
        response.

            > **Required scope:** `LISTS_WRITE`
            >
            > **Rate limit:** 30 requests per minute
      parameters:
        - schema:
            type: string
            description: The source list ID
          required: true
          description: The source list ID
          name: fromListId
          in: path
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                toListId:
                  type: integer
                  exclusiveMinimum: 0
                  description: Destination list ID
                contactIds:
                  type: array
                  items:
                    type: integer
                    exclusiveMinimum: 0
                  minItems: 1
                  description: Array of contact IDs to move
              required:
                - toListId
                - contactIds
      responses:
        '200':
          description: Contacts moved between lists
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      sourceListAppUrl:
                        type: string
                        format: uri
                        description: Direct Enginy app URL for opening the source list.
                      destinationListAppUrl:
                        type: string
                        format: uri
                        description: >-
                          Direct Enginy app URL for opening the destination
                          list.
                      requestedCount:
                        type: number
                      removedFromSourceCount:
                        type: number
                      addedToDestinationCount:
                        type: number
                      notInSourceCount:
                        type: number
                      alreadyInDestinationCount:
                        type: number
                    required:
                      - sourceListAppUrl
                      - destinationListAppUrl
                      - requestedCount
                      - removedFromSourceCount
                      - addedToDestinationCount
                      - notInSourceCount
                      - alreadyInDestinationCount
                required:
                  - status
                  - message
                  - data
        '400':
          description: Bad request - validation error or contacts not found
        '404':
          description: List not found
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````