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

# Unpublish module from marketplace

> Removes a module from the public marketplace. The module will still exist and be accessible by its ID, but won't be listed in marketplace searches.



## OpenAPI

````yaml /data-processor-api/openapi/openapi-hdp-server.json post /modules/{id}/unpublish
openapi: 3.1.0
info:
  title: Herodotus Data Processor Server API
  description: API documentation for the Herodotus Data Processor Server
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://staging.hdp.api.herodotus.cloud
    description: Staging API endpoint
security: []
tags:
  - name: tasks
    description: Task management endpoints
  - name: health
    description: Health check endpoints
  - name: modules
    description: Module registry endpoints
paths:
  /modules/{id}/unpublish:
    post:
      tags:
        - modules
      summary: Unpublish module from marketplace
      description: >-
        Removes a module from the public marketplace. The module will still
        exist and be accessible by its ID, but won't be listed in marketplace
        searches.
      operationId: unpublishModule
      parameters:
        - name: id
          in: path
          description: The unique identifier of the module to unpublish
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Module unpublished from marketplace successfully
        '404':
          description: Module not found
        '500':
          description: Internal server error

````