Reviews Module

June 17, 2026 · 5 min read

The Reviews Module allows customers to leave reviews for products, including a rating and a comment. Reviews can be moderated by admins before being published.

Review Requirements

Enable/disable the requirement for purchase of the item or admin approval of reviews before they are published. When enabled, reviews will be marked as "pending" until approved by an admin.

medusa-config.ts

module.exports = defineConfig({
    /* ... */
    modules: [
        {
            resolve: "medusa-essentials/modules/reviews",
            options: {
                require_approval: true, // default: false
                require_purchase: true  // default: true
            }
        }
    ]
})

API