JWT reference - App Center Docs
JWT header

JWT reference

API referencesLast updated: Jan 14, 2025

JWT header

Header: algorithm and token type

{ "alg": "HS256", "typ": "JWT" }

The header contains the token type (JWT), and the signing algorithm (HMAC-SHA-256).

JWT payload

Payload: data

{ "aud": "bf860c6b-dd98-42f2-b23d-17dcec59ca0d", "exp": 1680609955, "viewer_id": "5972411", "is_app_installed": true, "is_main_product_active": true, "is_app_taken_for_free": false, "is_main_product_trial_available": true, "product_trials_available": ["f406843c-6838-46de-9ecc-f17c7c0dc359"], "active_products": [ { "id": "4fbe56d2-148c-40c4-af83-bdcbfd60c0e3", "value": 2 } ], "extra_user_data": { "is_main_product_trial_active": false, "active_product_trials": ["e67176df-f062-4ab6-817a-e2f68878bba8"] }, "email_subscription": { "state": "STATE_UNSPECIFIED" }, "url": "", "lang": "en" }

The payload contains the following parameters:

aud

String. Unique app ID.

exp

Number. Lifetime of a valid token—in this case, five minutes.

You must check the expiration of this field according to our security requirements.

viewer_id

String. App user ID. If this is a corporate account, all its subusers have the same value.

is_main_product_active

Boolean. The value is false if the app hasn't been purchased or the app is free of charge.

Once the user purchases the app or gets a trial, the value becomes true.

To offer the user to install the app, use the SM.client('requestMainProductPurchase') JS SDK method.

is_app_taken_for_free

Boolean. The value is true if the user gets the app for free. It's applicable only for free and demo apps. For details, refer to Monetization options.

is_main_product_trial_available

Boolean. This value is true if the user can activate a trial of the app's main product. For example, it's true, if the user has never bought the app or activated a trial of the main product before.

product_trials_available

Array<String>. This array contains the IDs of all the app's products for which the user can activate a trial. For example, if a user never bought or activated a trial for the in-app purchase with the given id, that id will be in this array.

email_subscription

Object. The value depends on how your app is configured. You can use recurrent emails or notifications.

email_subscription.enabled

The value is available if the app uses recurrent emails.

Boolean. Email subscription status.

Use SM.client('requestEmailSubscriptionChange') to change it.

email_subscription.state

The value is available if the app uses notifications.

String. Possible values:

active_products

Array<Product>. The list of the user's purchased in-app products that extend the app functionality with extra features.

Product fields:

  • ID (string): Product ID.
  • value (number): Number of purchased in-app products.

If a user doesn't have any in-app products, show them a pop-up message with purchase options using the SM.client('requestInAppPurchase') JS SDK method.

For details, refer to the In-app products section.

extra_user_data

Object. Provides additional information about the state of the app trial and in-app trials. The field appears in JWT under these conditions:

extra_user_data.is_main_product_trial_active

Boolean. Is true if the user has activated a trial of the app and the trial period hasn't expired yet.

extra_user_data.active_product_trials

Array<string>. List of in-app IDs in an active trial state with an unexpired trial period.

lang

String. Interface language.

  • Available values: en, es, de, fr, it, pt, zh, and ja.
  • Available languages: English, Spanish, German, French, Italian, Portuguese (Brazil), Chinese (Mandarin), and Japanese.

url

String. URL from the parent window that will be displayed in the iframe.

By default, the links in the iframe don't change the URL in the parent window. You can include search parameters in the parent window URL, but you must use only approved parameters. Otherwise, they won't be displayed in the address bar.

For details, refer to Search parameters.

is_app_installed (deprecated)

Boolean. The value is false if the app hasn't been installed. Once a user purchases the app or gets a trial, the value becomes true.

The parameter was replaced with is_main_product_active.