Shop
Returns the shop-level configuration for your loyalty program: its display name, stamp branding, currency, and stamp-card size. Takes no arguments.
Returns a Shop object (nullable).
Returns / Fields
Section titled “Returns / Fields”| Field | Type | Description |
|---|---|---|
programName | String | The loyalty program’s display name. |
stampBrandingPlural | String | The merchant’s plural noun for stamps (e.g. “stamps”, “beans”). |
stampCardValue | Int | Number of stamps that make up one stamp card. |
currency | String | ISO currency code. |
currencySymbol | String | Display currency symbol. |
Example
Section titled “Example”query { shop { programName stampBrandingPlural stampCardValue currency currencySymbol }}{ "data": { "shop": { "programName": "Bean Club", "stampBrandingPlural": "beans", "stampCardValue": 10, "currency": "GBP", "currencySymbol": "£" } }}