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

# Remove Package

> Removes an item from the user's cart based on the item ID.



## OpenAPI

````yaml POST /cart/remove/{id}
openapi: 3.0.0
info:
  title: MineStoreCMS REST API
  description: Documentation for MineStoreCMS Frontend REST API.
  version: 3.8.7
servers:
  - url: https://v3.minestorecms.com/api
    description: Example URL of Demo Server
security: []
tags: []
paths:
  /cart/remove/{id}:
    post:
      tags:
        - cart
      summary: Remove an item from the cart
      description: Removes an item from the user's cart based on the item ID.
      parameters:
        - name: id
          in: path
          required: true
          description: The ID of the item to remove from the cart.
          schema:
            type: string
      responses:
        '200':
          description: Successful response indicating the item was removed from the cart.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    description: Indicates if the operation was successful.
        '401':
          description: Unauthorized - Invalid or missing Access Token.
      deprecated: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````