Manage bonuses via the PriceOS web app or our API
const { bonuses } = await priceos.bonuses.list({ customerId: "customer_123", featureKey: "api_calls", });
const result = await priceos.bonuses.update({ bonusId: "9e9be7e5-55d2-4b44-93af-c3687f4b8af5", amount: 150, expiresAt: null, // clear expiration reason: "manual_adjustment", });
const result = await priceos.bonuses.delete("9e9be7e5-55d2-4b44-93af-c3687f4b8af5");