# Get my redemption redeems (Convenience) Convenience endpoint for authenticated users to retrieve their own redemption redeems. Equivalent to GET /redemption-redeems but with required authentication and automatic filtering to current user context. Features: - Automatic user context (no userId parameter needed) - Optional redemption filtering - Requires user authentication - Simplified response structure Usage Examples: - GET /redemption-redeems/me (all redemptions for authenticated user) - GET /redemption-redeems/me?redemptionId=123 (specific user redemption) Endpoint: GET /redemption-redeems/me Version: 2.0.5 Security: projectKey, authUserJWT ## Query parameters: - `redemptionId` (string) Filter by specific redemption ID ## Response 200 fields (application/json): - `id` (string, required) The id of the redemption user redeem - `userId` (string, required) The user id that is claiming the redemption - `redemptionId` (string, required) The redemption that the user is redeeming - `userCountryCode` (string,null, required) The country code of the user redeeming the redemption - `status` (string, required) The status of the redemption redeem Enum: "PENDING", "PROCESSING", "COMPLETED", "FAILED" - `anonymizedIpAddress` (string,null, required) The anonymized IP address of the user redeeming the redemption - `createdAt` (string,null, required) The date and time when processing of the redemption redeem started - `updatedAt` (string,null, required) The date and time when processing of the redemption redeem was last updated - `failureReason` (string,null, required) The reason for failure if the redemption redeem failed