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

# Mark Conversation as Read

> Marks a conversation as read

## Overview

Marks a conversation as read. This updates the read status in your workspace inbox.

## Use Cases

* Mark conversations as read after displaying them in your UI
* Sync read status with your own systems
* Manage conversation notifications
* Keep inbox organized

## Behavior

* Only updates the read status in WaLead
* Does not affect LinkedIn's read status
* Can be called multiple times (idempotent)

## Response

Returns a success confirmation when the conversation is marked as read.


## OpenAPI

````yaml POST /v1/conversations/{conversationUrn}/mark-read
openapi: 3.1.0
info:
  title: WaLead API
  description: >-
    WaLead Public API for managing LinkedIn outreach campaigns, leads, and
    analytics
  version: 1.0.0
  contact:
    name: WaLead Support
    url: https://walead.ai
servers:
  - url: https://app-api.walead.ai/api
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /v1/conversations/{conversationUrn}/mark-read:
    post:
      summary: Mark Conversation as Read
      description: Marks a conversation as read
      parameters:
        - name: conversationUrn
          in: path
          description: Conversation URN identifier
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Conversation marked as read
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
        '400':
          description: Conversation not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized - Invalid API Key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - statusCode
        - message
      properties:
        statusCode:
          type: integer
          description: HTTP status code
        message:
          type: string
          description: Error message
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Generate from your WaLead dashboard.

````