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

# Lista comentários de cliente não lidos

> Retorna até 30 comentários de cliente não lidos em tarefas relacionadas ao usuário autenticado.



## OpenAPI

````yaml /api-reference/tarefas.yaml get /v2/comments/client/unread
openapi: 3.0.0
info:
  title: Tarefy API
  description: >-
    Tarefy REST API — platform for team management, tasks, culture, and
    performance.


    Versioned endpoints are available under `/v2/...`. Authenticate with a
    Bearer JWT in the `Authorization` header.


    To get started, see the [authentication guide](/authentication) and the
    [quickstart](/quickstart).
  version: 2.0.0
  contact:
    name: Tarefy Support
    email: suporte@tarefy.com
    url: https://tarefy.com
  license:
    name: Proprietary
servers:
  - url: https://app.tarefy.com/nodeapi
    description: Production
security:
  - bearerAuth: []
tags: []
paths:
  /v2/comments/client/unread:
    get:
      tags:
        - Comments
      summary: Lista comentários de cliente não lidos
      description: >-
        Retorna até 30 comentários de cliente não lidos em tarefas relacionadas
        ao usuário autenticado.
      responses:
        '200':
          description: Comentários de cliente não lidos retornados com sucesso
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnreadCommentsResponse'
components:
  schemas:
    UnreadCommentsResponse:
      type: object
      properties:
        status:
          type: boolean
        data:
          type: array
          items:
            $ref: '#/components/schemas/UnreadCommentItem'
    UnreadCommentItem:
      type: object
      properties:
        id:
          type: integer
        message:
          type: string
        from_user_name:
          type: string
        from_userid:
          type: integer
        from_user_photo:
          type: string
          nullable: true
        created_at:
          type: string
          format: date-time
        link:
          type: string
        read:
          type: integer
        type:
          type: string
          enum:
            - mention
            - comment
        client_name:
          type: string
          description: Presente em comentários de cliente.
        task:
          type: object
          properties:
            id_tarefa:
              type: integer
            titulo:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        JWT token obtained from `/v2/auth/login`. Send it in the header:
        `Authorization: Bearer <your_token>`

````