Rewardly Docs
Guides

Branding the redemption page

Make reward emails and the redemption experience yours.

Recipients should recognize you, not the platform. Three fields control what they see, on your account:

FieldWhere it shows
senderNameEmail sender line and "sent you a reward" heading
logoUrlEmail header
brandColorButtons and accents on the redemption page

Read your current branding

curl https://paybilt-rewards-api.fly.dev/v1/account \
  -H "Authorization: Bearer $REWARDLY_KEY"

Update it

curl -X PATCH https://paybilt-rewards-api.fly.dev/v1/account/branding \
  -H "Authorization: Bearer $REWARDLY_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "senderName": "Acme Loyalty",
    "logoUrl": "https://acme.com/logo.png",
    "brandColor": "#635BFF"
  }'

Only the fields you include are changed. brandColor must be a 6-digit hex value; pass null for logoUrl or senderName to clear them.

Changes apply to every redemption page immediately — including links already in recipients' inboxes — and to emails sent from then on.

Per-reward personality

Branding is account-wide, but each reward carries its own message, shown prominently on the intro screen. Use it for the personal touch:

{ "message": "Casey, thanks for a great first year on the team!" }

On this page