GET
/
api
/
loyalty
/
rule_edits
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

X-API-KEY
string
header
required

Query Parameters

loyaltyRuleId
boolean
required

ID of the loyalty rule

Example:

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

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"

startingAfter
string

Pagination cursor to start after a specific rule edit ID

Example:

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

limit
integer

Maximum number of edits to return

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

20

Response

200
application/json
200
data
object[]
required
hasNextPage
boolean
required