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

# Redeem points for a discount value (minimum 500 points, 2000 points = 7.5 EUR)



## OpenAPI

````yaml /openapi/engagement-service.json post /v1/loyalty/redeem
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/redeem:
    post:
      tags:
        - loyalty
      summary: >-
        Redeem points for a discount value (minimum 500 points, 2000 points =
        7.5 EUR)
      operationId: LoyaltyController_redeem
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RedeemPointsBody'
      responses:
        '200':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    RedeemPointsBody:
      type: object
      properties:
        points:
          type: number
          example: 500
          description: Minimum 500 points per redemption
      required:
        - points
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````