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

# Hide or unhide a comment

> Hiding keeps the comment visible to its author, who is not notified — it is the reversible move, unlike deleting.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/engagement/{id}/hide
openapi: 3.0.0
info:
  title: PlugKit API
  description: >-
    One API to publish, schedule and message across Instagram, WhatsApp, TikTok,
    Telegram, YouTube and X.
  version: 1.0.0
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/engagement/{id}/hide:
    post:
      tags:
        - engagement
      summary: Hide or unhide a comment
      description: >-
        Hiding keeps the comment visible to its author, who is not notified — it
        is the reversible move, unlike deleting.
      operationId: EngagementController_hide
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HideEngagementDto'
      responses:
        '200':
          description: ''
      security:
        - api-key: []
components:
  schemas:
    HideEngagementDto:
      type: object
      properties:
        hidden:
          type: boolean
          description: true hides the comment, false brings it back.
  securitySchemes:
    api-key:
      scheme: bearer
      bearerFormat: sk_...
      type: http

````