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

> Remove a participant from a conversation. They will no longer receive new messages in this thread.

# Remove participant from conversation



## OpenAPI

````yaml delete /v1/messaging/conversations/{conversationUid}/participants/{participantUserId}
openapi: 3.0.0
info:
  title: Partner API
  description: Public API for partner integrations
  version: '1.0'
  contact: {}
servers:
  - url: https://api-staging.respondent.io
security: []
tags: []
paths:
  /v1/messaging/conversations/{conversationUid}/participants/{participantUserId}:
    delete:
      tags:
        - messaging
      summary: Remove participant from conversation
      operationId: ConversationsController_removeParticipant
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
        - name: x-api-secret
          in: header
          required: true
          schema:
            type: string
        - name: conversationUid
          required: true
          in: path
          schema:
            type: string
        - name: participantUserId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: boolean

````