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

> Mark all messages in a conversation as read for your organization.

# Mark conversation as read



## OpenAPI

````yaml patch /v1/messaging/conversations/{conversationUid}/read
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}/read:
    patch:
      tags:
        - messaging
      summary: Mark conversation as read
      operationId: ConversationsController_markAsRead
      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
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: boolean

````