LoyaltyLion

Customer loyalty and engagement platform

Go to site
Explore
/
Apps
/
LoyaltyLion

LoyaltyLion API Integrations

Build and run workflows using the LoyaltyLion API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

LoyaltyLion is a platform that enables businesses to create and manage loyalty programs. With the LoyaltyLion API, businesses can create and manage loyalty programs, as well as track and analyze customer behavior.

Some examples of what you can build with the LoyaltyLion API include:

  • A loyalty program for your business
  • A customer loyalty program for your website or app
  • A rewards program for your customers
  • A points program for your customers
  • A referral program for your customers
  • A VIP program for your customers
  • A loyalty program for your employees
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    loyaltylion: {
      type: "app",
      app: "loyaltylion",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.loyaltylion.com/v2/customers`,
      headers: {
        Authorization: `Bearer ${this.loyaltylion.$auth.oauth_access_token}`,
      },
      params: {
        since_id: `0`,
        limit: `2`,
      },
    })
  },
})

Choose an API to Connect with LoyaltyLion API

1
-
12
of
1000+
apps by most popular

Authentication

LoyaltyLion uses OAuth authentication. When you connect your LoyaltyLion account, Pipedream will open a popup window where you can sign into LoyaltyLion and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any LoyaltyLion API.

Pipedream requests the following authorization scopes when you connect your account:

write_customerswrite_unsubscribeswrite_orders
OAuth Request Configurations:
  1. authorization
    GEThttps://app.loyaltylion.com/oauth/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.comma_separated_scopes}}
  2. accessToken
    POSThttps://app.loyaltylion.com/oauth/access-tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}