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

# Remove Creator from CRM List

> Soft-removes a creator from a CRM list.



## OpenAPI

````yaml DELETE /api/v2/crm/lists/{list_id}/creators/{user_id}
openapi: 3.1.0
info:
  title: CRM API
  description: >-
    Create CRM lists, add creators, check creator membership, and update CRM
    contacts. CRM API calls are free but require an active TopYappers
    subscription.
  version: 2.0.0
servers:
  - url: https://api.topyappers.com
security:
  - apiKeyAuth: []
paths:
  /api/v2/crm/lists/{list_id}/creators/{user_id}:
    delete:
      tags:
        - CRM Creators
      summary: Remove creator from CRM list
      description: Soft-removes a creator from a CRM list.
      parameters:
        - $ref: '#/components/parameters/ListId'
        - $ref: '#/components/parameters/UserId'
      responses:
        '200':
          description: Creator removed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemoveCrmCreatorResponse'
        '403':
          $ref: '#/components/responses/AuthError'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimitError'
components:
  parameters:
    ListId:
      name: list_id
      in: path
      required: true
      description: CRM list ID.
      schema:
        type: string
    UserId:
      name: user_id
      in: path
      required: true
      description: Creator user ID, for example `instagram_57971538386`.
      schema:
        type: string
  schemas:
    RemoveCrmCreatorResponse:
      type: object
      properties:
        message:
          type: string
          example: OK
        response:
          type: object
          properties:
            list_id:
              type: string
            user_id:
              type: string
            removed:
              type: boolean
    ErrorResponse:
      type: object
      properties:
        detail:
          type: string
  responses:
    AuthError:
      description: >-
        Missing or invalid API key, inactive subscription, or inaccessible team
        scope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: CRM list or contact not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    RateLimitError:
      description: Too many requests. The response includes a `Retry-After` header.
      headers:
        Retry-After:
          description: Seconds to wait before retrying.
          schema:
            type: integer
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-ty-api-key

````