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

# Reward Redeemers

> List customers who redeemed a specific reward option.



## OpenAPI

````yaml GET /customer/api/open/v1/loyalty/rewards/{rewardOptionId}/redeemers
openapi: 3.1.0
info:
  title: Customer Loyalty API
  description: Loyalty wallet, redemption, and history endpoints from customer service.
  version: 1.0.0
servers:
  - url: https://api.bitbybit.studio
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /customer/api/open/v1/loyalty/rewards/{rewardOptionId}/redeemers:
    get:
      tags:
        - Loyalty - Customer
      summary: Get redeemers for one reward option
      description: List customers who redeemed a specific reward option.
      operationId: getRewardRedeemers
      parameters:
        - name: rewardOptionId
          in: path
          required: true
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: integer
            default: 20
            minimum: 1
            maximum: 100
        - name: before
          in: query
          schema:
            type: string
            format: date-time
        - name: status
          in: query
          schema:
            type: string
            enum:
              - reserved
              - committed
              - released
              - expired
              - failed
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/RedeemerItem'
                  pagination:
                    $ref: '#/components/schemas/CursorPagination'
components:
  schemas:
    RedeemerItem:
      type: object
      properties:
        redemptionId:
          type: string
        reward:
          type: object
          properties:
            id:
              type:
                - string
                - 'null'
            name:
              type: string
        customer:
          type: object
          properties:
            id:
              type:
                - string
                - 'null'
            companyId:
              type: integer
            name:
              type:
                - string
                - 'null'
            email:
              type:
                - string
                - 'null'
            phoneNumber:
              type:
                - string
                - 'null'
        pointsSpent:
          type: string
        status:
          type:
            - string
            - 'null'
        source:
          type:
            - string
            - 'null'
        redeemedAt:
          type:
            - string
            - 'null'
          format: date-time
        usedAtCheckoutAt:
          type:
            - string
            - 'null'
          format: date-time
        createdAt:
          type:
            - string
            - 'null'
          format: date-time
    CursorPagination:
      type: object
      properties:
        limit:
          type: integer
        hasMore:
          type: boolean
        nextBefore:
          type:
            - string
            - 'null'
          format: date-time
  securitySchemes:
    ApiKeyAuth:
      description: API key for authentication. Create one in Settings > Developer.
      name: x-api-key
      in: header
      type: apiKey

````