These docs are for v2.0. Click to read the latest docs for v2.1.

register()

Usage

CleengApi.register(callback);

Opens popup window prompting customer to register at Cleeng platform.

Example

CleengApi.register(function(result) {
    if (result.token) {
        alert('You successfuly registered at Cleeng Platform. Your access token is ' + result.token);
    }
});

Go to API Console