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

# Hide a comment

> Hides a comment on the platform so it is not visible to the public, and marks it hidden in the inbox. Supported on Instagram, Facebook, Threads, and YouTube. Check the can_hide capability flag. Threads support is beta and requires the threads_manage_replies permission, which is pending Meta App Review, so Threads accounts outside the app's tester roster return an upstream authorization error until it is granted.



## OpenAPI

````yaml /api-reference/openapi.json post /inbox/comments/{postId}/{commentId}/hide
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /inbox/comments/{postId}/{commentId}/hide:
    post:
      tags:
        - Inbox Comments
      summary: Hide a comment
      description: >-
        Hides a comment on the platform so it is not visible to the public, and
        marks it hidden in the inbox. Supported on Instagram, Facebook, Threads,
        and YouTube. Check the can_hide capability flag. Threads support is beta
        and requires the threads_manage_replies permission, which is pending
        Meta App Review, so Threads accounts outside the app's tester roster
        return an upstream authorization error until it is granted.
      parameters:
        - example: '17895695668004550'
          description: Platform post ID
          name: postId
          in: path
          required: true
          schema:
            type: string
        - example: '17858893269577012'
          description: Platform comment ID to hide
          name: commentId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                account_id:
                  type: string
        description: Account that owns the post
        required: true
      responses:
        '200':
          description: Comment hidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.SuccessResponse'
        '400':
          description: Missing required parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '404':
          description: Account not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '501':
          description: Platform does not support hiding comments
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.SuccessResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````