Skip to main content

Creating codes

First, create a Manual Group in the codes tab. Then, create enough unique discount codes in your system for every creator you want to work with. It’s beneficial to have a buffer of extra unused codes to avoid disruptions. Add the codes to your group with POST /codes
The code should offer the end user a discount or incentive of some kind. This is what you’ll use for user_description

Updating usage

  • You have three options:
    • Track the total uses of each code and periodically bulk update PUT /codes
    • Send a request to PUT /codes/{code} each time it a code used.
    • Send an email to agent@lpt.is with a CSV attachment that contains a code and total_uses column
Creators are paid when you report, so you cannot retroactively decrease a code’s uses. You cannot delete codes which are already assigned.
I