Documentation Index
Fetch the complete documentation index at: https://docs.priceos.com/llms.txt
Use this file to discover all available pages before exploring further.
To grant bonues to customers via the Web App…Go to customer details page
Click grant bonus
Scroll down to the bonuses section and click the Grant Bonus button
Set options
Select a feature, input an amount, and optionally set a reason and expiration date
Save
Click the Grant Bonus button
You can use the create bonus endpoint to grant bonuses to a customer.const result = await priceos.bonuses.create({
customerId: "customer_123",
featureKey: "api_calls",
amount: 100,
expiresAt: Date.parse("2026-12-31T23:59:59.000Z"),
reason: "promotion",
metadata: {
campaign: "winter_promo",
},
});