Re: Send a copupon code on form submit

Anonymous
Not applicable

Send a copupon code on form submit

Not sure if this can be done....

I have a csv file with 1,000 coupon codes and I would like to give them out to our prospects when they submit on a form. Limit 1 coupon code to a customer and when we run out of coupon codes the promotion ends.

Can this be done? Any ideas or sugestions

Thanks,

Phil

1 REPLY 1
SanfordWhiteman
Level 10 - Community Moderator

Re: Send a copupon code on form submit

You can build a service (accessed via webhook) that returns a Coupon Code field 1000 times before shutting down.  Send the returned code to the user via email.  And when you see the first empty result for Coupon Code, send yourself an alert to disable the LP/form.

Alternately, you can go down the path indicated atCap event attendees with form logic? and update a Resource Lead with a counter value.  In this case you can give every lead a unique coupon code in advance, but you will only dispense 1000 of them.  Update the counter field on the Resource Lead and when it hits 1000, turn off the page/form.

Or use a combination of the above approaches.  You'll need someone with dev skills on hand.

Also, due to the out-of-band/asynchronous way the counter is updated, the process may allow a few last stragglers to fill out the form even though you won't end up sending them a coupon code (see other comments underCap event attendees with form logic?).