#Soo Barr
1 messages · Page 1 of 1 (latest)
Hi, are you able to share a bit more details so I can better assist? What do you mean by qualifying transaction completion?
as in the term of promotion, let's say i'd like to issue coupons of 5% discount on future transaction only to the customers who made transaction more than $200 in certain period of a time(let's say 9/1`-9/30) ? Thank you in advance!
I see, you're looking to apply this discount on the next transaction not the current one. Taking a look
Given that you're looking to offer the discount on the next payment, you'd need to have a logic on your end where you identify these customers. Then, you can share a promotion code with those customers by specifying the customer here: https://stripe.com/docs/api/promotion_codes/create#create_promotion_code-customer.
Could those two steps can be automatically combined?
to clear my question a bit more, would it possible to automate identifying then issuing coupon in one flow?
Not through our API directly, you'd need to add the logic on your end to identify first.
Alternatively, you can up the minimum amount spent on a transaction for that promotion and offer the promotion on the same transaction awith minimum_amount: https://stripe.com/docs/api/promotion_codes/create#create_promotion_code-restrictions-minimum_amount
Will have to explore that option with our sales but thank you for your help, i'll keep those in mind.
will there be a way to input coupon codes to multiple customers without giving them the code individually? or do you recommend promotion code rather than coupons?
You can specify the customer via the promotion code, https://stripe.com/docs/api/promotion_codes/create#create_promotion_code-customer. I'd test adding multiple customers id here in your test environment
ah okay thanks!