community_id
.Parameter | Type | Default | Description |
---|---|---|---|
with_mobile_settings | bool | null | When present, returns clubs addding mobile app setting information |
{
// (...) - see Loyalty Club model
}
curl --location --request GET 'https://api.mpc.dev.placewise.com/v3/loyalty_clubs/infinity-mall?with_mobile_settings' \
--header 'X-User-Agent;' \
--header 'X-Product-Name;' \
--header 'X-Loyalty-Club-Slug;' \
--header 'X-Customer;' \
--header 'Authorization: Bearer ' \
--header 'X-Client-Authorization: '
{
"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
}
}