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

# Remove Comment Reaction

> Remove Comment Reaction.



## OpenAPI

````yaml DELETE /articles/comments/{commentId}/reaction
openapi: 3.1.0
info:
  title: Blog API
  version: 1.0.0
servers:
  - url: https://api.octaviatech.app/cms
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Tags
    description: Tag management endpoints
paths:
  /articles/comments/{commentId}/reaction:
    delete:
      tags:
        - Articles
      summary: Remove reaction from comment
      description: >-
        Deletes the caller's own reaction for an approved comment. Removing a
        reaction that does not exist still succeeds, and the returned totals
        reflect the comment after refresh.
      parameters:
        - in: path
          name: commentId
          required: true
          schema:
            type: string
            pattern: ^[a-fA-F0-9]{24}$
            example: '{{objectId}}'
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                success: true
                statusCode: 200
                message: Comment reaction removed successfully
                data:
                  commentId: '{{objectId}}'
                  likes: 1
                  dislikes: 0
        '400':
          description: Bad request (invalid comment id, or missing guest identity)
          content:
            application/json:
              example:
                success: false
                statusCode: 400
                message: Invalid comment id
                data: null
        '401':
          description: >-
            Unauthorized (missing auth context, or captchaToken required for
            guest engagement)
          content:
            application/json:
              example:
                success: false
                statusCode: 401
                message: captchaToken is required for guest engagement
                data: null
        '403':
          description: >-
            Forbidden (reactions disabled, or guest reactions disabled for this
            tenant)
          content:
            application/json:
              example:
                success: false
                statusCode: 403
                message: Reactions are disabled for this article
                data: null
        '404':
          description: >-
            Comment not found (only approved, non-deleted comments can be
            reacted to)
          content:
            application/json:
              example:
                success: false
                statusCode: 404
                message: Comment not found
                data: null
        '429':
          description: Too many requests (guest rate limit exceeded)
          content:
            application/json:
              example:
                success: false
                statusCode: 429
                message: Too many guest reactions, please try later
                data: null
        '500':
          description: Server error
          content:
            application/json:
              example:
                success: false
                statusCode: 500
                message: Server Error
                data: null
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````