Users
import {PFClient} from "@pataflags/sdk-js";
const user = {
"id": "anonymous",
"context": {
"country": "atlantis"
}
};
const user1 = {
"id": "1",
"context": {
"email": "user1@koople.io",
"firstname": "user",
"lastname": "one",
"country": "gondor",
"age": 33
}
};
const user2 = {
"id": "2",
"context": {
"email": "user2@koople.io",
"firstname": "user",
"lastname": "two",
"country": "lilliput",
"age": 19
}
};
const pfclient = PFClient.initialize('YOUR_API_KEY', user);
const pfclient1 = PFClient.initialize('YOUR_API_KEY', user1);
const pfclient2 = PFClient.initialize('YOUR_API_KEY', user2);


Last updated