- Overview
- Reference
- API Structure
- Public API
- Introduction
- Loyalty Club
- Member
- Offers
- Rewards
- Games
- CMS Content
- Introduction
- Website
- Venue Info
- Components
- Pages
- Articles
- Events
- Job Postings
- Service Messages
- Stores
- Stores Categories
- Promotions
- Press Releases
- Attachments
- Management API
- Introduction
- Core
- Applications
- Branding
- Privacy Policy
- Cookie Policy
- Terms
- Domains
- Domain Email Configs
- Domain Web Configs
- TLS Certificates
- Links
- Fonts
- Subunits
- Subunits Scopes
- Contacts
- Translations
- Promotions Policy
- Tracker
- Social Logins
- Billing
- SMS Sender Identities
- Member Authentication Configuration
- Members
- Listing Members
- Member Profile
- Imports
- Groups
- Programs
- Benefits
- Cars
- Webhooks
- Misc
- Receipts
- Messages
- Stores
- Offers
- Rewards
- Triggerer
- CMS
- Introduction
- Venue Info
- Pages
- Website
- Landing Pages
- Articles
- Events
- Job Postings
- Press Releases
- Tags
- Attachments
- Service Messages
- Mixed Content
- Redirections
- 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
- Detect Receipt Fraud
- Generate Image
- Generate Text
- Generate Sending Text
- Predict Sending KPI v1 Copy
- (Draft) Reporting API
- Other
List Events Groups
Pending
GET
https://api.mpc.dev.placewise.com/v1/content/events_groups
API Permit:Cms:Api:EventsGroups:Index
API Context:Loyalty Club
Authorizations:UserToken
Query Parameters#
Parameter | Type | Default | Description |
---|---|---|---|
per_page | integer | 100 | Number of results to be returned per request (100 is the maximum) |
page_no | integer | 1 | Number of results page |
sort_by | string[] | ["title"] | See: Sorting params |
sort_directions | string[] | ["ASC"] | See: Sorting params |
Example#
{
"events_groups": [], // List of Events Groups - see 'Events Group model'
"pagination_info": {} // Pagination info - see 'Pagination info'
}
Request
Query Params
per_page
integerÂ
optional
sort_directions[]
enum<string>Â
optional
Allowed values:
ASCDESC
Default:
DESC
Examples:
ASCDESC
Header Params
X-Loyalty-Club-Slug
stringÂ
required
Default:
{{LOYALTY_CLUB_SLUG}}
X-Client-Authorization
stringÂ
optional
Default:
{{API_TOKEN}}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.mpc.dev.placewise.com/v1/content/events_groups?per_page=&page_no=1&sort_by[]=id&sort_directions[]=DESC' \
--header 'X-User-Agent;' \
--header 'X-Product-Name;' \
--header 'X-Loyalty-Club-Slug;' \
--header 'X-Customer;' \
--header 'Authorization;' \
--header 'X-Client-Authorization: '
Responses
🟢200Success
application/json
Body
events_groups
array[object (EventGroup) {4}]Â
required
id
integerÂ
required
title
object (LocalizedContent)  | nullÂ
required
Example:
{"en":"Text"}
slug
object (LocalizedContent)  | nullÂ
required
title
Example:
{"en":"Text"}
body
object (LocalizedContent)  | nullÂ
required
title
Example:
{"en":"Text"}
Example
{
"events_groups": [
{
"id": 0,
"title": {
"en": "Text"
},
"slug": {
"en": "Text"
},
"body": {
"en": "Text"
}
}
]
}
Modified at 2025-06-17 08:07:04