đ Custom data
Add custom dataâ
In many situations you may want to attach custom data to feedback items in order to better understand the context. You can add custom data incrementally or all at once. Any simple JSON object can be attached.
Gleap.attachCustomData({
test1: "Battle",
data2: "Unicorn",
});
caution
Please note that you must not use any keys that contain '.' (dots). i.e. "test.something".
Append custom dataâ
If you want to attach custom data incrementally you can do so with the setCustomData
method.
Gleap.setCustomData("email", "[email protected]");
Remove custom dataâ
Remove custom data key value pairs by calling the following method.
Gleap.removeCustomData("email");
Clear all custom dataâ
It's possible to clear all attached custom data by calling the following method.
Gleap.clearCustomData();