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

# List comments on an entity



## OpenAPI

````yaml /openapi/customer-api.json get /project/{projectId}/entities/{entityId}/comments
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Flow customer API reference. Start with the [quickstart](/api/quickstart)
    and [authentication guide](/api/authentication).
  title: Customer API
  version: 1.0.0
servers:
  - description: Flow API
    url: https://backend.branch.flowengineering.com
security: []
tags:
  - name: Automations
  - name: Branches
  - name: Comments
  - name: Convert
  - name: Data Model
  - name: Diagrams
  - name: Entities
  - name: Files
  - name: Import
  - name: Notifications
  - name: Projects
  - name: ReqIF
  - name: ReqIF Import
  - name: Shared Access Grants
  - name: User Groups
  - name: Users
paths:
  /project/{projectId}/entities/{entityId}/comments:
    get:
      tags:
        - Comments
      summary: List comments on an entity
      operationId: CustomerCommentsController_list
      parameters:
        - in: path
          name: projectId
          required: true
          schema:
            type: string
        - in: path
          name: entityId
          required: true
          schema:
            type: string
        - in: query
          name: branch_id
          required: false
          schema:
            type: string
        - in: query
          name: include_resolved
          required: false
          schema:
            type: boolean
        - description: Workspace identifier
          in: header
          name: customer
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/CustomerCommentResponseDto'
                type: array
          description: ''
      security:
        - api-key: []
        - bearer: []
components:
  schemas:
    CustomerCommentResponseDto:
      properties:
        author_id:
          description: ID of the user who authored the comment.
          type: string
        branch_id:
          description: Branch the comment was posted on; absent for the main line.
          type: string
        created_at:
          format: date-time
          type: string
        entity_id:
          description: Entity the comment is attached to.
          type: string
        id:
          type: string
        resolved:
          description: Whether the comment thread has been resolved.
          type: boolean
        text:
          description: Plain-text body of the comment.
          type: string
      required:
        - id
        - entity_id
        - author_id
        - text
        - resolved
        - created_at
      type: object
  securitySchemes:
    api-key:
      in: header
      name: X-API-Key
      type: apiKey
    bearer:
      bearerFormat: JWT
      scheme: bearer
      type: http

````