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.SetCustomData method.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Gleap.AttachCustomData(new Dictionary<string, object> { ["user"] = "Franzi" });
SetCustomData method.
Gleap.SetCustomData("value", "Franzi");
Gleap.RemoveCustomDataForKey("value");
Gleap.ClearCustomData();