You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns a list of enabled functionalities of the specified app. Functionalities that are not enabled are not shown. You can use this API endpoint if you expect a functionality which is only switched on or off using ablator.
Returns a list of enabled Flavors of the specified app. Flavors that are not enabled are not shown. Unlike Functionalities, Flavors represent a specific variant of a feature. If you use Flavors for A/B testing or something similar, this is where your data comes from.
Returns a list of tags that are applied to the specified user. Tags allow you to segment and manage your user base, and enable or disable certain functionalities based on tags.
Changes in Brief
which
endpoint has been renamed toflavors
API Definition
Caniuse
URL:
https://<server_url>/api/v3/<client_user_string>/<app_id>/caniuse/
Returns a list of enabled functionalities of the specified app. Functionalities that are not enabled are not shown. You can use this API endpoint if you expect a functionality which is only switched on or off using ablator.
Example Return Value:
Flavors
URL:
https://<server_url>/api/v3/<client_user_string>/<app_id>/flavors/
Returns a list of enabled Flavors of the specified app. Flavors that are not enabled are not shown. Unlike Functionalities, Flavors represent a specific variant of a feature. If you use Flavors for A/B testing or something similar, this is where your data comes from.
Example Return Value:
Retrieving Tags
URL:
https://<server_url>/api/v3/<client_user_string>/<app_id>/tag/
Returns a list of tags that are applied to the specified user. Tags allow you to segment and manage your user base, and enable or disable certain functionalities based on tags.
Example Return Value:
Adding Tags
URL:
https://<server_url>/api/v3/<client_user_string>/<app_id>/tag/
POST a dictionary like
{ "name": "<tag_name>" }
to this URL to add a new Tag to a user.Removing Tags
URL: https://<server_url>/api/v3/<client_user_string>/<app_id>/tag/<tag_name>/remove/
Send a DELETE request to this URL to remove a Tag from the specified user.
The text was updated successfully, but these errors were encountered: