Key | Type | Description |
---|---|---|
Loyalty Club | Loyalty Club[] | Array of Loyalty Clubs |
pagination_info | Object | Pagination object |
{
"loyalty_clubs": [
{
// (...) - see Loyalty Club model
}
],
"pagination_info": {
// (...) - see Pagination info model
}
}
curl --location --request GET 'https://api.mpc.dev.placewise.com/v3/loyalty_clubs?per_page=&page_no=1' \
--header 'X-User-Agent;' \
--header 'X-Product-Name;' \
--header 'X-Loyalty-Club-Slug;' \
--header 'X-Customer;' \
--header 'Authorization: Bearer ' \
--header 'X-Client-Authorization: '
{
"loyalty_clubs": {
"id": 1,
"type": "MAIN",
"community_id": 1,
"customer_id": 447,
"main_slug": "string",
"short_slug": "string",
"other_slugs": [
"string"
],
"name": "string",
"country": "NO",
"main_language": "string",
"languages": [
"string"
],
"timezone": "string",
"main_website_domain": "https://example.com",
"website_domains": [
"string"
],
"member_identifiers": [
"msisdn"
],
"mobile_app_setting": {
"android_app_id": "string",
"ios_app_id": "string",
"ios_bundle_id": "string",
"ios_team_id": "string",
"app_logo_url": "string",
"notifications_center_messages_limit": 0
}
},
"pagination_info": {
"count": 1000,
"total_count": 2050,
"per_page": 1000,
"total_pages": 3,
"current_page": 1,
"next_page": 2,
"prev_page": null,
"is_first_page": true,
"is_last_page": false,
"is_out_of_range": false,
"offset": 0
}
}