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 |
{
"events_groups": [], // List of Events Groups - see 'Events Group model'
"pagination_info": {} // Pagination info - see 'Pagination info'
}
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: '
title
title
{
"events_groups": [
{
"id": 0,
"title": {
"en": "Text"
},
"slug": {
"en": "Text"
},
"body": {
"en": "Text"
}
}
]
}