API Documentation
Identity
Loyalty
- GETGet loyalty accounts
- GETGet the rank of a user based on their loyalty points
- GETGet loyalty currencies
- POSTCreate a loyalty currency
- GETGet Loyalty Multipliers
- POSTCreate Loyalty Multiplier
- DELDelete Loyalty Multiplier by External Identifier
- POSTUpdate Loyalty Multiplier
- DELDelete Loyalty Multiplier by ID
- GETGet Loyalty Rule Edits
- POSTRestore Loyalty Rule Edit
- GETGet Loyalty Rule Groups
- POSTCreate Loyalty Rule Groups
- POSTUpdate Loyalty Rule Group
- DELDelete Loyalty Rule Group
- GETGet Loyalty Rules
- POSTCreate Loyalty Rule
- POSTUpdate Loyalty Rule
- DELDelete Loyalty Rule
- POSTComplete Loyalty Rule
- GETGet Processing status for a specific user on loyalty rules
- POSTCreate Loyalty Transaction
- GETGet Loyalty Transaction Entries
- GETGet Loyalty Rule Chains
Badge
Minting
Question
Get Loyalty Rule Edits
Retrieve configured loyalty rule edits with optional pagination and filters
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 ruleEdits = await client.loyalty.ruleEdits.list({ loyaltyRuleId: true });
console.log(ruleEdits.data);
}
main();
{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"loyaltyRuleId": "123e4567-e89b-12d3-a456-426614174001",
"websiteId": "123e4567-e89b-12d3-a456-426614174002",
"organizationId": "123e4567-e89b-12d3-a456-426614174003",
"editedByUserId": "123e4567-e89b-12d3-a456-426614174004",
"editedAt": "2021-08-30T20:00:00Z",
"action": "create",
"data": {
"name": "New Rule Name"
},
"previousData": {
"name": "Old Rule Name"
},
"comment": "Updated rule name"
}
],
"hasNextPage": true
}
Authorizations
Query Parameters
ID of the loyalty rule
"123e4567-e89b-12d3-a456-426614174000"
Unique identifier for the organization to filter by
"123e4567-e89b-12d3-a456-426614174001"
Unique identifier for the website to filter by
"123e4567-e89b-12d3-a456-426614174002"
Pagination cursor to start after a specific rule edit ID
"123e4567-e89b-12d3-a456-426614174100"
Maximum number of edits to return
1 <= x <= 1000
20
Response
Unique identifier for the rule edit
"123e4567-e89b-12d3-a456-426614174000"
ID of the loyalty rule
"123e4567-e89b-12d3-a456-426614174001"
Unique identifier for the website
"123e4567-e89b-12d3-a456-426614174002"
Unique identifier for the organization
"123e4567-e89b-12d3-a456-426614174003"
User ID of the user who made the edit
"123e4567-e89b-12d3-a456-426614174004"
Timestamp of when the rule edit was made
"2021-08-30T20:00:00Z"
Type of action that was made on the rule
create
, update
, delete
, restore
"create"
Data that was changed on the rule
Unique identifier for the loyalty rule
"123e4567-e89b-12d3-a456-426614174000"
Unique identifier for the organization
"123e4567-e89b-12d3-a456-426614174001"
Unique identifier for the website
"123e4567-e89b-12d3-a456-426614174002"
Type of the loyalty rule
"purchase"
Frequency of the loyalty rule
"daily"
Amount associated with the loyalty rule
10
Timestamp when the loyalty rule was created
"2023-10-01T12:34:56Z"
Timestamp when the loyalty rule was last updated
"2023-10-05T15:30:00Z"
Timestamp when the loyalty rule was deleted (if applicable)
null
Optional address of the collection
"0x1234567890abcdef1234567890abcdef12345678"
{ "name": "New Rule Name" }
Previous data of the rule before the edit
Unique identifier for the loyalty rule
"123e4567-e89b-12d3-a456-426614174000"
Unique identifier for the organization
"123e4567-e89b-12d3-a456-426614174001"
Unique identifier for the website
"123e4567-e89b-12d3-a456-426614174002"
Type of the loyalty rule
"purchase"
Frequency of the loyalty rule
"daily"
Amount associated with the loyalty rule
10
Timestamp when the loyalty rule was created
"2023-10-01T12:34:56Z"
Timestamp when the loyalty rule was last updated
"2023-10-05T15:30:00Z"
Timestamp when the loyalty rule was deleted (if applicable)
null
Optional address of the collection
"0x1234567890abcdef1234567890abcdef12345678"
{ "name": "Old Rule Name" }
Comment that was made on the edit
"Updated rule name"
Was this page helpful?
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 ruleEdits = await client.loyalty.ruleEdits.list({ loyaltyRuleId: true });
console.log(ruleEdits.data);
}
main();
{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"loyaltyRuleId": "123e4567-e89b-12d3-a456-426614174001",
"websiteId": "123e4567-e89b-12d3-a456-426614174002",
"organizationId": "123e4567-e89b-12d3-a456-426614174003",
"editedByUserId": "123e4567-e89b-12d3-a456-426614174004",
"editedAt": "2021-08-30T20:00:00Z",
"action": "create",
"data": {
"name": "New Rule Name"
},
"previousData": {
"name": "Old Rule Name"
},
"comment": "Updated rule name"
}
],
"hasNextPage": true
}