Add Bonus Reward

Add a bonus reward to an affiliate

POST https://platform.shoffi.app/API/affiliate/addBonusReward

Use this endpoint to reward an affiliate with a one-time bonus commission.

Request Body

Name
Type
Description

apiKey*

String

Your Shoffi app API Key

appId*

Integer

Your app ID

email*

String

The affiliate email address

amount*

Integer

Bonus reward amount (USD)

internalNote

String

Internal note (for your own records)

{
  "bonusReward": {
    "email": "[email protected]",
    "amount": 100,
    "internalNote": "Bonus for Q4 campaign"
  }
}
curl -X POST \
  https://platform.shoffi.app/API/affiliate/addBonusReward \
  -H 'Content-Type: application/json' \
  -d '{
    "apiKey": "YourKey",
    "appId": 00000000,
    "email": "[email protected]",
    "amount": 100,
    "internalNote": "Bonus for Q4 campaign"
}'

Parameters breakdown

  • email: The affiliate email address.

  • amount: The bonus reward amount to add.

  • internalNote: Optional internal note (not shown to the affiliate).

Response example

Last updated