Skip to main content
Recognise employees at key moments - onboarding, performance reviews, work anniversaries, or spot bonuses - by issuing digital value they can spend on gift cards of their choice.

How it works

  1. When a new employee joins, create them as a consumer via the API
  2. When a reward is triggered (e.g. end of quarter), credit their wallet
  3. The employee receives a notification and redeems their balance for any available gift card

Example: credit an employee after a performance review

// 1. Create the employee as a consumer (first time only)
POST /api/partner/v1/customer
{
  "fullName": "Sarah Ahmed",
  "email": "sarah.ahmed@yourcompany.com",
  "currency": "USD",
  "initialFunds": 0
}

// 2. Credit their wallet after the review
POST /api/partner/v1/wallets/{walletId}/transactions
{
  "amount": 100.00,
  "transactionType": "CREDIT",
  "referenceId": "review-q2-2026-sarah",
  "description": "Q2 performance bonus"
}