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

# List reward redemptions



## OpenAPI

````yaml get /v1/rewards/{id}/redemptions
openapi: 3.1.0
info:
  title: One of None API
  version: 1.0.0
  description: >-
    The One of None API manages product collections, registrations, short URLs,
    team operations, and rewards used by storefront integrations including
    Shopify discounts and redemption flows.
servers:
  - url: https://api.oneofnone.io
security:
  - ApiKeyAuth: []
paths:
  /v1/rewards/{id}/redemptions:
    get:
      summary: List reward redemptions
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: id
          in: path
        - schema:
            type: number
            minimum: 1
            maximum: 1000
          required: false
          name: limit
          in: query
        - schema:
            type: number
          required: false
          name: offset
          in: query
        - schema:
            type: string
            enum:
              - asc
              - desc
          required: false
          name: order
          in: query
        - schema:
            type: string
          required: false
          name: order_by
          in: query
        - schema:
            type: boolean
          required: false
          name: include_count
          in: query
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RewardRedemptionsListResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    RewardRedemptionsListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/RewardRedemption'
        pagination:
          type: object
          properties: {}
          additionalProperties: {}
      required:
        - data
        - pagination
    GenericErrorResponse:
      type: object
      properties:
        message:
          type: string
        code:
          type: string
        details:
          type: object
          additionalProperties: {}
      required:
        - message
        - code
      additionalProperties: {}
    RewardRedemption:
      type: object
      properties:
        id:
          type: string
          format: uuid
        rewardId:
          type: string
          format: uuid
        codeId:
          type:
            - string
            - 'null'
          format: uuid
        teamId:
          type: string
          format: uuid
        source:
          type: string
          enum:
            - shopify
            - stripe
            - vault
            - manual
        orderId:
          type:
            - string
            - 'null'
        externalOrderId:
          type:
            - string
            - 'null'
        customerEmail:
          type:
            - string
            - 'null'
        discountAmount:
          type: integer
        orderTotal:
          type: integer
        sessionId:
          type:
            - string
            - 'null'
        redeemedAt:
          type: string
        metadata:
          type: object
          additionalProperties: {}
      required:
        - id
        - rewardId
        - codeId
        - teamId
        - source
        - orderId
        - externalOrderId
        - customerEmail
        - discountAmount
        - orderTotal
        - sessionId
        - redeemedAt
        - metadata
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````