> ## 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 Article Reaction

> Remove Article Reaction.



## OpenAPI

````yaml DELETE /articles/{id}/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/{id}/reaction:
    delete:
      tags:
        - Articles
      summary: Remove reaction from article
      description: >-
        Deletes the caller's own reaction for the article. Removing a reaction
        that does not exist still succeeds, and the returned totals reflect the
        article after refresh. Rejected with 403 when the article, its category,
        or its sub-category disables reactions.
      parameters:
        - in: path
          name: id
          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: Reaction removed successfully
                data:
                  articleId: '{{objectId}}'
                  likes: 11
                  dislikes: 3
        '400':
          description: Bad request (invalid article id, or missing guest identity)
          content:
            application/json:
              example:
                success: false
                statusCode: 400
                message: Invalid article 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: Article not found
          content:
            application/json:
              example:
                success: false
                statusCode: 404
                message: Article 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

````