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

# Get Customer Redemptions

> List reward redemptions for a customer.



## OpenAPI

````yaml GET /customer/api/open/v1/loyalty/customers/{customerId}/redemptions
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/customers/{customerId}/redemptions:
    get:
      tags:
        - Loyalty - Customer
      summary: Get customer reward redemptions
      description: List reward redemptions for a customer.
      operationId: getCustomerRedemptions
      parameters:
        - name: customerId
          in: path
          required: true
          schema:
            type: string
        - name: search
          in: query
          schema:
            type: string
        - name: status
          in: query
          schema:
            type: string
            enum:
              - reserved
              - committed
              - released
              - expired
              - failed
        - name: limit
          in: query
          schema:
            type: integer
            default: 20
            minimum: 1
            maximum: 100
        - name: before
          in: query
          schema:
            type: string
            format: date-time
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/RedemptionItem'
                  pagination:
                    $ref: '#/components/schemas/CursorPagination'
components:
  schemas:
    RedemptionItem:
      type: object
      properties:
        id:
          type: string
        companyId:
          type: integer
        customerId:
          type: string
        customer:
          type: object
          properties:
            id:
              type:
                - string
                - 'null'
            companyId:
              type:
                - integer
                - 'null'
            name:
              type:
                - string
                - 'null'
            email:
              type:
                - string
                - 'null'
            phoneNumber:
              type:
                - string
                - 'null'
        walletId:
          type: string
        rewardOptionId:
          type:
            - string
            - 'null'
        rewardName:
          type:
            - string
            - 'null'
        status:
          type: string
        pointsReserved:
          type: string
        pointsCommitted:
          type: string
        voucherCode:
          type:
            - string
            - 'null'
        voucherProvider:
          type:
            - string
            - 'null'
        voucherExternalId:
          type:
            - string
            - 'null'
        reserveExpiresAt:
          type:
            - string
            - 'null'
          format: date-time
        commitAt:
          type:
            - string
            - 'null'
          format: date-time
        releasedAt:
          type:
            - string
            - 'null'
          format: date-time
        failureReason:
          type:
            - string
            - 'null'
        idempotencyKey:
          type: string
        metadata:
          type:
            - object
            - 'null'
          additionalProperties: true
        createdById:
          type:
            - integer
            - 'null'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          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

````