HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center
API Reference

Identify User

This API is primarily used to identify your user, sort of like a log in kind of method. The API takes two strings, the user's email being the first, and the user's name for the second.

Luciq.identifyUser(withID: "1", email: "[email protected]", name: "John Appleseed")
[Luciq identifyUserWithID:@"1" email:@"[email protected]" name:@"John Appleseed"];
Luciq.identifyUser("user name", "email");
Luciq.identifyUser("user name", "email")
Luciq.identifyUserWithEmail("[email protected]", "John Appleseed");
Luciq.identifyUserWithEmail(String email, [String name]);
Luciq.identifyUserWithEmail(
    '[email protected]',
    'John'
);
//iOS
Luciq.IdentifyUserWithEmail("user_email", "user_name");

//Android 
Luciq.IdentifyUser("user_name", "user_email");