- 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
- 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
Automatic groups#
"automatic": true
attribute ) when it has been created with audience_id
oraudience_conditions
param.System groups#
"system": true
attribute) are created automatically by system and are not editableby API client - only MPC system can create, edit and destroy system groups.
"All members" group that would contain all Loyalty Club members.
MembersGroup model#
Example#
{
"id": 6813,
"name": "Red",
"type": "Color",
"description": "Lorem ipsum dolor est",
"automatic": false,
"system": false,
"audience_id": 351,
"audience_conditions": [
{
"type": "array",
"field": "members_group_ids",
"value": [6813],
"operator": "any",
"condition_group": "member_properties"
}
],
"members_count": 42
}
Definition#
Key | Type | Optional? | Description |
---|---|---|---|
id | integer | no | |
name | string | yes | |
type | string | yes | Types are not predefined. It's up to API client to define them. |
automatic | boolean | no | Is the group automatic? |
system | boolean | no | Is the group system group? |
description | string | yes | |
members_count | integer | yes | |
audience_id | integer | no | ID of related audience |
audience_conditions | Object | no | Conditions of related audience - See DMP docs |
MembersGroup payload model#
Example#
{
"name": "Red",
"type": "Color",
"description": "Lorem ipsum dolor est",
"system": false,
"audience_id": 351,
"audience_conditions": [
{
"type": "array",
"field": "members_group_ids",
"value": [6813],
"operator": "any",
"condition_group": "member_properties"
}
]
}
Definition#
Key | Type | Optional? | Description |
---|---|---|---|
name | string | yes | |
type | string | yes | Types are not predefined. It's up to API client to define them. |
system | boolean | no | Is the group system group? |
description | string | yes | |
audience_id | integer | no | ID of related audience |
audience_conditions | Object | no | Conditions of related audience |
Members Groups Bulk Members payload model#
Example#
{
"identifier_type": "email",
"identifiers": ["foo@bar.bz", "bar@foo.bz", ... ]
}
Definition#
Key | Type | Required | Description |
---|---|---|---|
identifier_type | string | yes | type of member identifier - email, msisdn, id |
identifiers | array | yes | array of emails, msisdn, id - only one type a time |
Modified at 2024-04-22 22:18:11