Kameleoon offers you an API and some functions allowing you to handle a specific behavior or complex tests. To know more, please read our developer documentation
Welcome to Kameleoon API! This API will allow you to use every entity of Kameleoon application inside your own application. Find the full list of the supported functionalities. To know more, please read our developer documentation
What are API Credentials? By providing a client_id and a client_secret to an authorization end-point, you will obtain an access token. You will then be able to access the Automation API by using this token as a Bearer Token present in a Authorization HTTP request header. It is linked to a user account and can […]
By default, Kameleoon allocate randomly a variation to a visitor. Here is the function used by Kameleoon: function (experiment) { var registeredVariationId; var deviationRandom = experiment.obtainVariationAssignmentRandomNumber(); var total = 0.0; for (var i = 0, l = experiment.variations.length; i < l; ++i) { total += experiment.variations[i].deviation; if (deviationRandom <= […]
By default, Kameleoon allocates randomly a variation to a visitor. Here is the function used. function (experiment) { var registeredVariationId; var deviationRandom = experiment.obtainVariationAssignmentRandomNumber(); var total = 0.0; for (var i = 0, l = experiment.variations.length; i < l; ++i) { total += experiment.variations[i].deviation; if (deviationRandom <= total) […]