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

# HR & Employee Rewards

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

```text theme={null}
// 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"
}
```

Below is an example (but not limited to) on how to apply the HR & Employee Rewards.

<Frame>
  <img src="https://mintcdn.com/orbt/96Fd-vuJ5g0Urlz8/images/orbt-diagrams-Flow-5---HR-Employee-Rewards.png?fit=max&auto=format&n=96Fd-vuJ5g0Urlz8&q=85&s=475a84f16d0cebee9d204a9af7a15f60" alt="Orbt Diagrams Flow 5 HR Employee Rewards" width="401" height="881" data-path="images/orbt-diagrams-Flow-5---HR-Employee-Rewards.png" />
</Frame>
