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

# Mark Messages as Read

> Marks specific messages in a conversation as read by the current user



## OpenAPI

````yaml POST /conversations/mark-messages-read
openapi: 3.1.0
info:
  title: Tatu API
  description: API documentation for Tatu's booking and artist management system
  version: 1.0.0
servers:
  - url: http://localhost:3000/api
    description: Development server
security: []
paths:
  /conversations/mark-messages-read:
    post:
      summary: Mark Messages as Read
      description: Marks specific messages in a conversation as read by the current user
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MarkMessagesReadRequest'
      responses:
        '200':
          description: Messages marked as read successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                properties:
                  success:
                    type: boolean
                    description: Whether the operation was successful
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden - User not in conversation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Conversation not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    MarkMessagesReadRequest:
      type: object
      required:
        - conversationId
        - messageIds
      properties:
        conversationId:
          type: string
          description: ID of the conversation
        messageIds:
          type: array
          items:
            type: string
          description: Array of message IDs to mark as read
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````