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

# Remove Tags from Conversation

> Removes one or more tags from a conversation. Path `id` is the conversation `participantsIdentifiers` (URL-encoded).



## OpenAPI

````yaml DELETE /conversations/{id}/tags
openapi: 3.1.0
info:
  title: Pingmee API
  description: A complete guide to Pingmee micro service architecture.
  version: 1.0.0
servers:
  - url: https://api.pingmee.co.il
security:
  - cookieAuth: []
    ApiKeyAuth: []
paths:
  /conversations/{id}/tags:
    delete:
      description: >-
        Removes one or more tags from a conversation. Path `id` is the
        conversation `participantsIdentifiers` (URL-encoded).
      parameters:
        - name: id
          in: path
          required: true
          description: Conversation participants identifiers.
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConversationTagIdsBody'
      responses:
        '200':
          description: Per-tag removal results; `errors` lists tag IDs that failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemoveConversationTagsResponse'
        '400':
          description: Missing body, path id, or invalid tagIds
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ConversationTagIdsBody:
      type: object
      required:
        - tagIds
      properties:
        tagIds:
          type: array
          minItems: 1
          items:
            type: string
          description: Tag IDs to assign (POST) or remove (DELETE) from the conversation
      additionalProperties: false
    RemoveConversationTagsResponse:
      type: object
      required:
        - errors
      properties:
        errors:
          type: array
          items:
            type: string
          description: >-
            Human-readable messages for tags that failed to remove; empty when
            all succeeded
      additionalProperties: false
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: string
        message:
          type: string
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: header
      name: Cookie
      description: Personal access token from Pingmee Settings → Developer Tools
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Business API key from Pingmee Settings → Developer Tools

````