import SnagSolutions from '@snagsolutions/sdk';
const client = new SnagSolutions({
apiKey: 'My API Key',
});
const multiplier = await client.loyalty.multipliers.update('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');
console.log(multiplier.id);
{
"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>"
},
"loyaltyRuleId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
Update an existing loyalty multiplier.
import SnagSolutions from '@snagsolutions/sdk';
const client = new SnagSolutions({
apiKey: 'My API Key',
});
const multiplier = await client.loyalty.multipliers.update('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');
console.log(multiplier.id);
{
"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>"
},
"loyaltyRuleId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
Body
Schema for updating a loyalty multiplier
200
Schema for loyalty multiplier
Was this page helpful?