> ## 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.

# Record a product share and award points



## OpenAPI

````yaml /openapi/engagement-service.json post /v1/loyalty/share
openapi: 3.0.0
info:
  title: Asiko Engagement Service
  description: Notifications, campaigns/discounts, and analytics/reporting
  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: notifications
    description: ''
  - name: campaigns
    description: ''
  - name: analytics
    description: ''
paths:
  /v1/loyalty/share:
    post:
      tags:
        - loyalty
      summary: Record a product share and award points
      operationId: LoyaltyController_share
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ShareProductBody'
      responses:
        '201':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    ShareProductBody:
      type: object
      properties:
        productId:
          type: string
          example: b6a1e2d4-8f3c-4a5b-9e2d-1f4c6a8b9d0e
      required:
        - productId
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````