GET
/
api
/
loyalty
/
multipliers
import SnagSolutions from '@snagsolutions/sdk';

const client = new SnagSolutions({
  apiKey: process.env['X_API_KEY'], // This is the default and can be omitted
});

async function main() {
  const multipliers = await client.loyalty.multipliers.list();

  console.log(multipliers.data);
}

main();
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "websiteId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "multiplier": 500.005,
      "title": "<string>",
      "description": "<string>",
      "externalIdentifier": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "deletedAt": "<string>",
      "user": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "walletAddress": "<string>"
      }
    }
  ],
  "hasNextPage": true
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

websiteId
string
organizationId
string
walletAddress
userId
startingAfter
string
limit
integer
Required range: 1 <= x <= 1000
includeDeleted
string
walletGroupIdentifier
string
externalIdentifier
string
twitterUser
string
discordUser
string
userGroupExternalIdentifier
string
userGroupId
string

Response

200
application/json
200
data
object[]
required

Schema for loyalty multiplier

hasNextPage
boolean
required