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

# Create a review (one per user per product)



## OpenAPI

````yaml /openapi/product-service.json post /v1/reviews
openapi: 3.0.0
info:
  title: Asiko Product Service
  description: Product catalogue browsing, search, reviews, recommendations
  version: '1.0'
  contact: {}
servers:
  - url: https://asikodevapi.candourit.io
    description: Production (via api-gateway)
  - url: http://localhost:3000
    description: Local development (via api-gateway)
security: []
tags:
  - name: products
    description: ''
  - name: categories
    description: ''
  - name: brands
    description: ''
  - name: reviews
    description: ''
  - name: recommendations
    description: ''
  - name: media
    description: ''
paths:
  /v1/reviews:
    post:
      tags:
        - reviews
      summary: Create a review (one per user per product)
      operationId: ReviewsController_create
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateReviewBody'
      responses:
        '201':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    CreateReviewBody:
      type: object
      properties:
        productId:
          type: string
          example: b6a1e2d4-8f3c-4a5b-9e2d-1f4c6a8b9d0e
        rating:
          type: number
          example: 5
          minimum: 1
          maximum: 5
        message:
          type: string
          example: Excellent quality rice, arrived fresh and well packaged!
      required:
        - productId
        - rating
        - message
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````