Custom Earn Events
Learn how to create and trigger custom earn events using webhooks or Shopify Flow
Lantern allows you to create custom earn events to reward customers for behavior. These custom earn events can either be triggered by a Shopify Flow action or by a webhook.
Creating Custom Earn Events
The first thing you will need to do is create a Custom Earn Event that we will trigger with the webhook.
- Go to the Loyalty section of Lantern and then to Earn events
- Click Create event
- Give your new event a name
- Choose Custom for the type
- Choose how many points you want to award
- Make sure to set the Status to Active
Make sure to note the Handle shown in the card on the right of the screen. We will need this later. You can also set the option here to allow a member to only ever be allowed to receive the reward for this event once.
Using Webhooks
To use a webhook to trigger an earn event, you'll need to have an API Key that you can use to authenticate the webhook request.
Generating an API Key
- Go to Settings and then Integrations in Lantern
- Click the "Generate API Key" button
- You should see a new API Key appear
Triggering the Event
Once you have your API Key and Earn Event set up, you are ready to trigger it with a webhook.
You will need to send a POST request to:
Add an authorization header using the API Key you generated:
Send either the Customer ID or email to identify the user you want to give the reward to, along with the handle from the Earn Event we created earlier. Send these as a JSON body in the request.
Example request body using email:
Example request body using customer ID:
A full example using curl:
If all goes well, you should receive a successful response with a 200 code. If you then view your customer in the Lantern admin, you should see they received the award for the earn event.