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
Update Loyalty Rule
Update an existing Loyalty Rule
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 rule = await client.loyalty.rules.update('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', {
amount: '10.5',
endTime: '2024-12-31T23:59:00Z',
name: 'Daily Rewards Program',
});
console.log(rule.id);
}
main();
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Daily Rewards Program",
"description": "This rule rewards users daily for specific actions.",
"startTime": "2024-01-01T00:00:00Z",
"endTime": "2024-12-31T23:59:00Z",
"effectiveStartTime": "2024-01-01T00:00:00Z",
"effectiveEndTime": "2024-12-31T23:59:00Z",
"amount": "<any>",
"customRewardsCsvUrl": "https://example.com/rewards.csv",
"customRewardsApiUrl": "https://api.example.com/rewards",
"subscriptionIdentifier": "sub12345",
"metadata": {
"onlyNonListed": true,
"hasPaidFullRoyalty": false,
"hasVerifiedTwitter": true,
"onlyRewardExistingUser": true,
"hasNeverSold": false,
"onlyNative": true,
"hasFillSource": true,
"fillSource": "opensea.io",
"hasOrderSource": true,
"orderSource": "opensea.io",
"twitterUsername": "@example_user",
"twitterUserId": "1234567890",
"twitterHashtag": "#loyalty",
"enableVerifiedMultiplier": true,
"verifiedMultiplier": 1.5,
"isMultiplierApplied": true,
"onlyKnownUsers": false,
"firstReferralReward": 10,
"referrerReward": 50,
"secondReferralReward": 5,
"enableStreaks": true,
"promoCode": "PROMO123",
"enableJoinDiscordServers": true,
"discordServersToJoin": [
{
"id": "123456789012345678",
"channels": [
{
"id": "987654321098765432",
"text": "Hello",
"emojis": [
{
"id": "1f600"
}
]
}
],
"roles": [
{
"id": "role123"
}
]
}
],
"streakArray": [
{
"streakMilestone": 5,
"streakAmount": 10
}
],
"dripQuestsToComplete": [
{
"id": "drip123"
}
],
"collection": [
{
"address": "0xabcdefabcdefabcdefabcdefabcdefabcdef",
"network": "mainnet",
"multiplier": 2
}
],
"range": [
{
"startRange": 1,
"endRange": 10,
"amount": 5
}
],
"customRewardsApiKey": "api-key-1234",
"link": "https://example.com",
"socialPlatform": "X(Twitter)",
"socialPlatformName": "Twitter",
"socialPlatformLogo": "https://example.com/logo.png",
"rewardPerImpression": true,
"minQty": 1,
"maxQty": 10,
"snapshotProposals": [
{
"id": "proposal123",
"space": "space123"
}
],
"cta": {
"label": "Click Here",
"href": "https://example.com"
},
"hasSaleCurrency": false,
"isTokenHoldMultiplier": true,
"saleCurrency": "USD",
"isRetroactive": true,
"timeDelayToVerifySeconds": 300,
"referralRequirements": {
"points": {
"amount": 50,
"loyaltyCurrecyId": "currency123"
},
"achievePoints": true,
"completeProfile": false,
"connectTwitter": true,
"connectDiscord": true,
"connectEmail": true
},
"multiplierLoyaltyCurrencyIds": [
"currency123",
"currency456"
],
"verifyPlaceHolderText": "Enter your verification code here.",
"verificationTextMinimumLength": 10,
"buttonText": "Verify Now",
"telegramChannelId": "telegram-channel-123",
"twitterAccountUrl": "https://twitter.com/example_user",
"twitterPostUrl": "https://twitter.com/example/status/1234567890",
"checkLike": true,
"checkRepost": true,
"checkComment": true,
"checkText": "loyalty",
"smartContract": {
"contractId": "123e4567-e89b-12d3-a456-426614174000",
"abi": "[]",
"event": "Transfer",
"criteria": "everyEvent",
"params": [
{
"name": "value",
"condition": ">=",
"value": "100"
}
],
"withCustomRange": true,
"customRange": {
"startsAt": "2024-01-01T00:00:00Z",
"endsAt": "2024-01-31T23:59:59Z"
},
"withMax": true,
"max": 1000,
"withBonus": true,
"bonus": [
{
"amount": 50,
"count": 5
}
],
"addressMapping": "0x123...789"
},
"walletType": "evm",
"imageUrl": "https://example.com/image.png",
"trackAllContracts": true,
"onlyRewardSingleTokenOwnership": true,
"skipMultiplier": true,
"completeProfileConditions": {
"twitter": true,
"discord": false
}
},
"network": "mainnet",
"collectionAddress": "0x1234567890abcdef1234567890abcdef12345678",
"collections": [
{
"address": "0xabcdefabcdefabcdefabcdefabcdefabcdef",
"network": "mainnet"
}
],
"hideInUi": false,
"isRequired": true,
"oauthCredentialsId": "123e4567-e89b-12d3-a456-426614174000",
"rewardType": "points",
"frequency": "daily",
"interval": "weekly",
"loyaltyRuleGroupId": "123e4567-e89b-12d3-a456-426614174005",
"mediaUrl": "https://example.com/media.png"
}
Authorizations
Path Parameters
Body
Name of the loyalty rule
1
"Daily Rewards Program"
End time for the loyalty rule
"2024-12-31T23:59:00Z"
Reward amount for the loyalty rule
Optional description of the loyalty rule
"This rule rewards users daily for specific actions."
Start time for the loyalty rule
"2024-01-01T00:00:00Z"
Effective start time of the rule
"2024-01-01T00:00:00Z"
Effective end time of the rule
"2024-12-31T23:59:00Z"
URL for uploading custom rewards via CSV
"https://example.com/rewards.csv"
API URL for custom rewards integration
"https://api.example.com/rewards"
Optional subscription identifier for the rule
"sub12345"
Additional metadata for the loyalty rule
Flag indicating whether to include only non-listed items.
true
Indicates if the full royalty has been paid for items.
false
Indicates if the user has a verified Twitter account.
true
Indicates if only existing users are rewarded.
true
Indicates if the item has never been sold.
false
Flag indicating whether to include only native tokens.
true
Flag indicating whether the fill source is included.
true
Fill source of the order for the token sale
"opensea.io"
Flag indicating whether the order source is included.
true
Order source of the order for the token sale
"opensea.io"
Twitter username of the user.
"@example_user"
Unique identifier of the Twitter user.
"1234567890"
Hashtag associated with the Twitter post.
"#loyalty"
Flag indicating whether the verified multiplier is enabled.
true
Multiplier applied to rewards for verified users.
1.5
Indicates if the multiplier has been applied to rewards.
true
Flag indicating whether to include only known users.
false
Percentage reward given to a user for their first referral.
10
Lump sum reward given to a referrer.
50
Percentage reward given for a second-level referral.
5
Flag indicating whether streaks are enabled.
true
Promotional code associated with the rule.
"PROMO123"
Flag indicating whether joining Discord servers is required.
true
Array of Discord servers, channels, and roles to join.
ID of the Discord server to join.
"123456789012345678"
Array of Discord channels to join.
ID of the Discord channel.
"987654321098765432"
Phrase of text to be present in the discord message
"Hello"
Array of drip quests required to complete the rule.
ID of the drip quest to complete.
"drip123"
Array of collections associated with the rule.
Blockchain address of the collection.
"0xabcdefabcdefabcdefabcdefabcdefabcdef"
Blockchain network of the collection.
abstract
, abstractTestnet
, apechain
, arbitrum
, avalanche
, avalancheFuji
, base
, baseSepolia
, berachainArtio
, binance
, bscTestnet
, campTestnet
, fantom
, fantomTestnet
, flowMainnet
, mainnet
, optimism
, polygon
, polygon_mumbai
, skaleNebula
, solana
, sophon
, sui
, superseed
, superseedSepolia
, vanar
, xai
, zksync
, sepolia
, optimism_sepolia
, arbitrumSepolia
, goerli
, optimism_goerli
, arbitrumGoerli
, basecamp
"mainnet"
Multiplier applied to the rewards for this collection.
2
API key for custom rewards integration.
"api-key-1234"
Optional link associated with the metadata.
"https://example.com"
Social media platform associated with the rule.
Custom
, Discord
, EpicGames
, Instagram
, Steam
, Telegram
, TikTok
, Twitch
, X(Twitter)
, YouTube
"X(Twitter)"
Name of the social platform.
"Twitter"
URL of the social platform's logo.
"https://example.com/logo.png"
Flag indicating if rewards are given per impression.
true
Minimum quantity constraint for token holding.
1
Maximum quantity constraint for token holding.
10
Flag indicating if the sale currency is included.
false
Flag indicating if the token hold multiplier is applied.
true
Currency associated with sales.
"USD"
Flag indicating if rewards are applied retroactively.
true
Time delay in seconds to verify actions.
300
Object defining referral requirements.
Flag indicating if achieving points is required.
true
Flag indicating if completing the profile is required.
false
Flag indicating if connecting Twitter is required.
true
Flag indicating if connecting Discord is required.
true
Flag indicating if connecting email is required.
true
Array of loyalty currency IDs used for multipliers.
["currency123", "currency456"]
Placeholder text for verification input fields.
"Enter your verification code here."
Minimum length of the verification text.
10
Text displayed on the action button.
"Verify Now"
ID of the Telegram channel.
"telegram-channel-123"
URL of the associated Twitter account.
"https://twitter.com/example_user"
URL of the associated Twitter post.
"https://twitter.com/example/status/1234567890"
Flag indicating if liking the post is required.
true
Flag indicating if reposting is required.
true
Flag indicating if commenting is required.
true
Text to check in the Twitter post, username, or bio.
"loyalty"
Object containing details of the associated smart contract.
ID of the smart contract.
"123e4567-e89b-12d3-a456-426614174000"
ABI of the smart contract.
"[]"
Event emitted by the smart contract.
"Transfer"
Criteria to evaluate the smart contract event.
everyEvent
, byParameter
"everyEvent"
Array of parameters for the smart contract.
Flag indicating if a custom range is applied.
true
Flag indicating if a maximum limit is applied.
true
Maximum value allowed for the parameter.
1000
Flag indicating if a bonus is applied.
true
Mapping of addresses for the smart contract.
"0x123...789"
Type of wallet associated with the rule.
evm
, solana
, imx
, sui
, ton
"evm"
URL of the image associated with the rule.
"https://example.com/image.png"
Flag indicating if all contracts are tracked.
true
give points for only one token ownership per contract
true
Flag indicating if the multiplier is skipped.
true
Blockchain network where the rule will apply
abstract
, abstractTestnet
, apechain
, arbitrum
, avalanche
, avalancheFuji
, base
, baseSepolia
, berachainArtio
, binance
, bscTestnet
, campTestnet
, fantom
, fantomTestnet
, flowMainnet
, mainnet
, optimism
, polygon
, polygon_mumbai
, skaleNebula
, solana
, sophon
, sui
, superseed
, superseedSepolia
, vanar
, xai
, zksync
, sepolia
, optimism_sepolia
, arbitrumSepolia
, goerli
, optimism_goerli
, arbitrumGoerli
, basecamp
"mainnet"
Blockchain address of the associated collection
"0x1234567890abcdef1234567890abcdef12345678"
List of associated collections
Blockchain address of the collection
"0xabcdefabcdefabcdefabcdefabcdefabcdef"
Blockchain network for the collection
abstract
, abstractTestnet
, apechain
, arbitrum
, avalanche
, avalancheFuji
, base
, baseSepolia
, berachainArtio
, binance
, bscTestnet
, campTestnet
, fantom
, fantomTestnet
, flowMainnet
, mainnet
, optimism
, polygon
, polygon_mumbai
, skaleNebula
, solana
, sophon
, sui
, superseed
, superseedSepolia
, vanar
, xai
, zksync
, sepolia
, optimism_sepolia
, arbitrumSepolia
, goerli
, optimism_goerli
, arbitrumGoerli
, basecamp
"mainnet"
Whether to hide this rule in the user interface
false
Whether this rule is required for participation
true
ID for associated OAuth credentials
"123e4567-e89b-12d3-a456-426614174000"
Type of reward issued by this rule
points
, multiplier
"points"
Frequency of the rule execution
none
, once
, daily
, weekly
, monthly
, immediately
"daily"
Time interval for recurring rule execution
daily
, weekly
, monthly
, once
, custom
, every_message
"weekly"
ID of the rule group section to associate with the rule
"123e4567-e89b-12d3-a456-426614174005"
URL of the media to be displayed
"https://example.com/media.png"
Response
Name of the loyalty rule
1
"Daily Rewards Program"
End time for the loyalty rule
"2024-12-31T23:59:00Z"
Reward amount for the loyalty rule
Optional description of the loyalty rule
"This rule rewards users daily for specific actions."
Start time for the loyalty rule
"2024-01-01T00:00:00Z"
Effective start time of the rule
"2024-01-01T00:00:00Z"
Effective end time of the rule
"2024-12-31T23:59:00Z"
URL for uploading custom rewards via CSV
"https://example.com/rewards.csv"
API URL for custom rewards integration
"https://api.example.com/rewards"
Optional subscription identifier for the rule
"sub12345"
Additional metadata for the loyalty rule
Flag indicating whether to include only non-listed items.
true
Indicates if the full royalty has been paid for items.
false
Indicates if the user has a verified Twitter account.
true
Indicates if only existing users are rewarded.
true
Indicates if the item has never been sold.
false
Flag indicating whether to include only native tokens.
true
Flag indicating whether the fill source is included.
true
Fill source of the order for the token sale
"opensea.io"
Flag indicating whether the order source is included.
true
Order source of the order for the token sale
"opensea.io"
Twitter username of the user.
"@example_user"
Unique identifier of the Twitter user.
"1234567890"
Hashtag associated with the Twitter post.
"#loyalty"
Flag indicating whether the verified multiplier is enabled.
true
Multiplier applied to rewards for verified users.
1.5
Indicates if the multiplier has been applied to rewards.
true
Flag indicating whether to include only known users.
false
Percentage reward given to a user for their first referral.
10
Lump sum reward given to a referrer.
50
Percentage reward given for a second-level referral.
5
Flag indicating whether streaks are enabled.
true
Promotional code associated with the rule.
"PROMO123"
Flag indicating whether joining Discord servers is required.
true
Array of Discord servers, channels, and roles to join.
ID of the Discord server to join.
"123456789012345678"
Array of Discord channels to join.
ID of the Discord channel.
"987654321098765432"
Phrase of text to be present in the discord message
"Hello"
Array of drip quests required to complete the rule.
ID of the drip quest to complete.
"drip123"
Array of collections associated with the rule.
Blockchain address of the collection.
"0xabcdefabcdefabcdefabcdefabcdefabcdef"
Blockchain network of the collection.
abstract
, abstractTestnet
, apechain
, arbitrum
, avalanche
, avalancheFuji
, base
, baseSepolia
, berachainArtio
, binance
, bscTestnet
, campTestnet
, fantom
, fantomTestnet
, flowMainnet
, mainnet
, optimism
, polygon
, polygon_mumbai
, skaleNebula
, solana
, sophon
, sui
, superseed
, superseedSepolia
, vanar
, xai
, zksync
, sepolia
, optimism_sepolia
, arbitrumSepolia
, goerli
, optimism_goerli
, arbitrumGoerli
, basecamp
"mainnet"
Multiplier applied to the rewards for this collection.
2
API key for custom rewards integration.
"api-key-1234"
Optional link associated with the metadata.
"https://example.com"
Social media platform associated with the rule.
Custom
, Discord
, EpicGames
, Instagram
, Steam
, Telegram
, TikTok
, Twitch
, X(Twitter)
, YouTube
"X(Twitter)"
Name of the social platform.
"Twitter"
URL of the social platform's logo.
"https://example.com/logo.png"
Flag indicating if rewards are given per impression.
true
Minimum quantity constraint for token holding.
1
Maximum quantity constraint for token holding.
10
Flag indicating if the sale currency is included.
false
Flag indicating if the token hold multiplier is applied.
true
Currency associated with sales.
"USD"
Flag indicating if rewards are applied retroactively.
true
Time delay in seconds to verify actions.
300
Object defining referral requirements.
Flag indicating if achieving points is required.
true
Flag indicating if completing the profile is required.
false
Flag indicating if connecting Twitter is required.
true
Flag indicating if connecting Discord is required.
true
Flag indicating if connecting email is required.
true
Array of loyalty currency IDs used for multipliers.
["currency123", "currency456"]
Placeholder text for verification input fields.
"Enter your verification code here."
Minimum length of the verification text.
10
Text displayed on the action button.
"Verify Now"
ID of the Telegram channel.
"telegram-channel-123"
URL of the associated Twitter account.
"https://twitter.com/example_user"
URL of the associated Twitter post.
"https://twitter.com/example/status/1234567890"
Flag indicating if liking the post is required.
true
Flag indicating if reposting is required.
true
Flag indicating if commenting is required.
true
Text to check in the Twitter post, username, or bio.
"loyalty"
Object containing details of the associated smart contract.
ID of the smart contract.
"123e4567-e89b-12d3-a456-426614174000"
ABI of the smart contract.
"[]"
Event emitted by the smart contract.
"Transfer"
Criteria to evaluate the smart contract event.
everyEvent
, byParameter
"everyEvent"
Array of parameters for the smart contract.
Flag indicating if a custom range is applied.
true
Flag indicating if a maximum limit is applied.
true
Maximum value allowed for the parameter.
1000
Flag indicating if a bonus is applied.
true
Mapping of addresses for the smart contract.
"0x123...789"
Type of wallet associated with the rule.
evm
, solana
, imx
, sui
, ton
"evm"
URL of the image associated with the rule.
"https://example.com/image.png"
Flag indicating if all contracts are tracked.
true
give points for only one token ownership per contract
true
Flag indicating if the multiplier is skipped.
true
Blockchain network where the rule will apply
abstract
, abstractTestnet
, apechain
, arbitrum
, avalanche
, avalancheFuji
, base
, baseSepolia
, berachainArtio
, binance
, bscTestnet
, campTestnet
, fantom
, fantomTestnet
, flowMainnet
, mainnet
, optimism
, polygon
, polygon_mumbai
, skaleNebula
, solana
, sophon
, sui
, superseed
, superseedSepolia
, vanar
, xai
, zksync
, sepolia
, optimism_sepolia
, arbitrumSepolia
, goerli
, optimism_goerli
, arbitrumGoerli
, basecamp
"mainnet"
Blockchain address of the associated collection
"0x1234567890abcdef1234567890abcdef12345678"
List of associated collections
Blockchain address of the collection
"0xabcdefabcdefabcdefabcdefabcdefabcdef"
Blockchain network for the collection
abstract
, abstractTestnet
, apechain
, arbitrum
, avalanche
, avalancheFuji
, base
, baseSepolia
, berachainArtio
, binance
, bscTestnet
, campTestnet
, fantom
, fantomTestnet
, flowMainnet
, mainnet
, optimism
, polygon
, polygon_mumbai
, skaleNebula
, solana
, sophon
, sui
, superseed
, superseedSepolia
, vanar
, xai
, zksync
, sepolia
, optimism_sepolia
, arbitrumSepolia
, goerli
, optimism_goerli
, arbitrumGoerli
, basecamp
"mainnet"
Whether to hide this rule in the user interface
false
Whether this rule is required for participation
true
ID for associated OAuth credentials
"123e4567-e89b-12d3-a456-426614174000"
Type of reward issued by this rule
points
, multiplier
"points"
Frequency of the rule execution
none
, once
, daily
, weekly
, monthly
, immediately
"daily"
Time interval for recurring rule execution
daily
, weekly
, monthly
, once
, custom
, every_message
"weekly"
ID of the rule group section to associate with the rule
"123e4567-e89b-12d3-a456-426614174005"
URL of the media to be displayed
"https://example.com/media.png"
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 rule = await client.loyalty.rules.update('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', {
amount: '10.5',
endTime: '2024-12-31T23:59:00Z',
name: 'Daily Rewards Program',
});
console.log(rule.id);
}
main();
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Daily Rewards Program",
"description": "This rule rewards users daily for specific actions.",
"startTime": "2024-01-01T00:00:00Z",
"endTime": "2024-12-31T23:59:00Z",
"effectiveStartTime": "2024-01-01T00:00:00Z",
"effectiveEndTime": "2024-12-31T23:59:00Z",
"amount": "<any>",
"customRewardsCsvUrl": "https://example.com/rewards.csv",
"customRewardsApiUrl": "https://api.example.com/rewards",
"subscriptionIdentifier": "sub12345",
"metadata": {
"onlyNonListed": true,
"hasPaidFullRoyalty": false,
"hasVerifiedTwitter": true,
"onlyRewardExistingUser": true,
"hasNeverSold": false,
"onlyNative": true,
"hasFillSource": true,
"fillSource": "opensea.io",
"hasOrderSource": true,
"orderSource": "opensea.io",
"twitterUsername": "@example_user",
"twitterUserId": "1234567890",
"twitterHashtag": "#loyalty",
"enableVerifiedMultiplier": true,
"verifiedMultiplier": 1.5,
"isMultiplierApplied": true,
"onlyKnownUsers": false,
"firstReferralReward": 10,
"referrerReward": 50,
"secondReferralReward": 5,
"enableStreaks": true,
"promoCode": "PROMO123",
"enableJoinDiscordServers": true,
"discordServersToJoin": [
{
"id": "123456789012345678",
"channels": [
{
"id": "987654321098765432",
"text": "Hello",
"emojis": [
{
"id": "1f600"
}
]
}
],
"roles": [
{
"id": "role123"
}
]
}
],
"streakArray": [
{
"streakMilestone": 5,
"streakAmount": 10
}
],
"dripQuestsToComplete": [
{
"id": "drip123"
}
],
"collection": [
{
"address": "0xabcdefabcdefabcdefabcdefabcdefabcdef",
"network": "mainnet",
"multiplier": 2
}
],
"range": [
{
"startRange": 1,
"endRange": 10,
"amount": 5
}
],
"customRewardsApiKey": "api-key-1234",
"link": "https://example.com",
"socialPlatform": "X(Twitter)",
"socialPlatformName": "Twitter",
"socialPlatformLogo": "https://example.com/logo.png",
"rewardPerImpression": true,
"minQty": 1,
"maxQty": 10,
"snapshotProposals": [
{
"id": "proposal123",
"space": "space123"
}
],
"cta": {
"label": "Click Here",
"href": "https://example.com"
},
"hasSaleCurrency": false,
"isTokenHoldMultiplier": true,
"saleCurrency": "USD",
"isRetroactive": true,
"timeDelayToVerifySeconds": 300,
"referralRequirements": {
"points": {
"amount": 50,
"loyaltyCurrecyId": "currency123"
},
"achievePoints": true,
"completeProfile": false,
"connectTwitter": true,
"connectDiscord": true,
"connectEmail": true
},
"multiplierLoyaltyCurrencyIds": [
"currency123",
"currency456"
],
"verifyPlaceHolderText": "Enter your verification code here.",
"verificationTextMinimumLength": 10,
"buttonText": "Verify Now",
"telegramChannelId": "telegram-channel-123",
"twitterAccountUrl": "https://twitter.com/example_user",
"twitterPostUrl": "https://twitter.com/example/status/1234567890",
"checkLike": true,
"checkRepost": true,
"checkComment": true,
"checkText": "loyalty",
"smartContract": {
"contractId": "123e4567-e89b-12d3-a456-426614174000",
"abi": "[]",
"event": "Transfer",
"criteria": "everyEvent",
"params": [
{
"name": "value",
"condition": ">=",
"value": "100"
}
],
"withCustomRange": true,
"customRange": {
"startsAt": "2024-01-01T00:00:00Z",
"endsAt": "2024-01-31T23:59:59Z"
},
"withMax": true,
"max": 1000,
"withBonus": true,
"bonus": [
{
"amount": 50,
"count": 5
}
],
"addressMapping": "0x123...789"
},
"walletType": "evm",
"imageUrl": "https://example.com/image.png",
"trackAllContracts": true,
"onlyRewardSingleTokenOwnership": true,
"skipMultiplier": true,
"completeProfileConditions": {
"twitter": true,
"discord": false
}
},
"network": "mainnet",
"collectionAddress": "0x1234567890abcdef1234567890abcdef12345678",
"collections": [
{
"address": "0xabcdefabcdefabcdefabcdefabcdefabcdef",
"network": "mainnet"
}
],
"hideInUi": false,
"isRequired": true,
"oauthCredentialsId": "123e4567-e89b-12d3-a456-426614174000",
"rewardType": "points",
"frequency": "daily",
"interval": "weekly",
"loyaltyRuleGroupId": "123e4567-e89b-12d3-a456-426614174005",
"mediaUrl": "https://example.com/media.png"
}