POST
/
api
/
loyalty
/
rules
/
{id}
/
complete
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 response = await client.loyalty.rules.complete('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');

  console.log(response.message);
}

main();
{
  "message": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

id
string
required

Body

application/json
Body

Schema for completing a loyalty rule

verificationCode
string

Optional verification code for completing the loyalty rule

Example:

"VERIF123"

userId
string

Unique identifier for the user

Example:

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

walletAddress
string

Wallet address of the user can only be used if userId is not provided

Example:

"0x1234567890abcdef1234567890abcdef12345678"

Link to the comment made by user

Example:

"https://x.com/Snag_Solutions/status/1735407428093522314"

loyaltyQuestionChoiceId
string

ID of the choice selected by the user

Example:

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

verifyOnly
string
default:false

Flag indicating if only verification is required, this will not create a transaction and reward the user

Example:

false

amount
number | null

Override amount for the reward (rounded to nearest whole number). This will override the rule amount and reward the integer passed.

Example:

10

Response

200
application/json
200
message
string
required