> ## 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.

# Remove contacts from a list

> Remove contacts from a list.

Responses include direct Enginy app URLs when available. The response includes `listAppUrl` for the target list. 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 delete /v1/lists/{listId}/contacts
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/{listId}/contacts:
    delete:
      tags:
        - Lists
      summary: Remove contacts from a list
      description: >-
        Remove contacts from a list.


        Responses include direct Enginy app URLs when available. The response
        includes `listAppUrl` for the target list. 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 list ID
          required: true
          description: The list ID
          name: listId
          in: path
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                contactIds:
                  type: array
                  items:
                    type: integer
                    exclusiveMinimum: 0
                  minItems: 1
                  description: Array of contact IDs to add/remove
              required:
                - contactIds
      responses:
        '200':
          description: Contacts removed from list
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      listAppUrl:
                        type: string
                        format: uri
                        description: Direct Enginy app URL for opening the target list.
                      requestedCount:
                        type: number
                      removedCount:
                        type: number
                      notInListCount:
                        type: number
                    required:
                      - listAppUrl
                      - requestedCount
                      - removedCount
                      - notInListCount
                required:
                  - status
                  - message
                  - data
        '400':
          description: Bad request - validation error
        '404':
          description: List not found
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````