- Overview
- Reference
- API Structure
- Public API
- Introduction
- Loyalty Club
- Member
- Offers
- Rewards
- Games
- CMS Content
- Management API
- Introduction
- Core
- Applications
- Privacy Policy
- Cookie Policy
- Terms
- Domains
- Domain Email Configs
- Domain Web Configs
- TLS Certificates
- Links
- Fonts
- Subunits
- Subunits Scopes
- SMS Sender Identities
- Contacts
- Translations
- Promotions Policy
- Tracker
- Social Logins
- Billing
- Members
- Listing Members
- Member Profile
- Imports
- Groups
- Programs
- Benefits
- Cars
- Webhooks
- Misc
- Receipts
- Stores
- Offers
- Rewards
- Triggerer
- Rules
- Event Types Schema
- Point Multipliers
- CMS
- Introduction
- Pages
- Components
- Website
- Website Domains
- Venue Info
- Landing Pages
- Landing Page Templates
- Articles
- Events
- Events Groups
- Job Postings
- Press Releases
- Tags
- Service Messages
- Content Prototypes
- ContentPrototype Model
- List Content Prototypes
- Show Content Prototype
- Create Content Prototype
- Update Content Prototype
- Destroy Content Prototype
- List Organization Content Prototypes
- Show Organization Content Prototype
- Create Organization Content Prototype
- Update Organization Content Prototype
- Destroy Organization Content Prototype
- Mixed Content
- Attachments
- Events
- Games
- Scraper
- Files
- Receipts
- Users API
- Operations API
- Introduction
- Manager API
- Tenant API
- Messaging API
- Data API
- ML API
- Introduction
- Predict Sending KPI v1
- Explain Sending KPI Prediction v1
- Predict Sending KPI In Date Range v1
- Predict Sending Popularity v2
- Predict Sending Text Popularity v2
- Predict Sending Time Series Popularity v2
- Explain Sending Popularity Prediction v2
- Explain Sending Text Popularity Prediction v2
- Explain Sending Time Series Popularity Prediction v2
- Recommend sending time v2
- Generate Image
- Generate Text
- Generate Sending Text
- (Draft) Reporting API
- Other
Introduction
If more then one multiplier could be applied the highest multiplier is used. For every rule you need to define separate multiplier.
Point multiplier works only in chosen rule context and rule must be of rewards type.
Point Multiplier model#
Example#
{
"id": 5,
"multiplier": 1.25,
"schedule_type": "daily",
"start_date": "2020-01-01",
"end_date": "2020-01-31",
"weekdays": [],
"store_ids": [],
"created_at": "2019-02-26T13:22:43.495Z",
"updated_at": "2019-02-28T15:29:24.156Z"
}
Definition#
Key | Description | Type |
---|---|---|
id | Point Multiplier ID | integer |
multiplier | multiplier of reward points | decimal |
schedule_type | Schedule type | string |
start_date | Schedule start date | date |
end_date | Schedule end date | date |
weekdays | Selected weekdays of schedule | array |
store_ids | Store ids | array |
created_at | Time of point multiplier creation | Date |
updated_at | Time of last point multiplier update | Date |
Cases and Example#
Case 1#
{
"multiplier": 2,
"schedule_type": "daily",
"start_date": "2022-06-10",
"end_date": "2022-06-10"
}
Case 2#
{
"multiplier": 3,
"schedule_type": "daily",
"start_date": "2022-06-10",
"end_date": "2022-06-20",
"store_ids": [1034, 1446, 1417]
}
Case 3#
{
"multiplier": 5,
"schedule_type": "monthly",
"start_date": "2022-06-01",
"end_date": "2022-06-30",
"weekdays": [1, 4]
}
Modified at 2024-04-22 22:13:53