GET
/
api
/
loyalty
/
rules
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 rules = await client.loyalty.rules.list();

  console.log(rules.data);
}

main();
{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "organizationId": "123e4567-e89b-12d3-a456-426614174001",
      "websiteId": "123e4567-e89b-12d3-a456-426614174002",
      "collectionAddress": "0x1234567890abcdef1234567890abcdef12345678",
      "type": "purchase",
      "frequency": "daily",
      "amount": 10,
      "createdAt": "2023-10-01T12:34:56Z",
      "updatedAt": "2023-10-05T15:30:00Z",
      "deletedAt": null,
      "metadata": {
        "key": "value"
      }
    }
  ],
  "hasNextPage": true
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

organizationId
string

Unique identifier for the organization to filter by

Example:

"123e4567-e89b-12d3-a456-426614174001"

websiteId
string

Unique identifier for the website to filter by

Example:

"123e4567-e89b-12d3-a456-426614174002"

collectionAddress
string

Address of the collection to filter by

Example:

"0x1234567890abcdef1234567890abcdef12345678"

loyaltyRuleGroupId
string

ID of the loyalty rule group to filter results

Example:

"123e4567-e89b-12d3-a456-426614174004"

startingAfter
string

Pagination cursor to start after a specific resource ID

Example:

"123e4567-e89b-12d3-a456-426614174010"

limit
number
default:10

Maximum number of records to return (max 1000)

Required range: 1 <= x <= 1000
Example:

50

loyaltyRuleId

The IDs of the loyalty rule

Example:

"123e4567-e89b-12d3-a456-426614174001"

Response

200
application/json
200
data
object[]
required

Schema for a loyalty rule

hasNextPage
boolean
required