Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update user.mdx #2389

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/client/concepts/user.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Auto-inferred User Attributes can be used for both Targeting and Results Segment
| `userID` | ID representing a unique user. This ID will be used to guarantee consistency of targeting for Feature Gates and Experiments and will be used to evaluate experiment results. If `User ID` doesn't exist yet, leave this empty; a `Stable ID` persisted locally will be used for evaluations. | `your_user_id` | All | |
| `email` | Email of the user. | `[email protected]` | All | |
| `userAgent` | User agent of the browser. This will be decoded to determine the Browser and Operating System of the user's context. Will be inferred if not provided. | `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.40 Safari/537.36` | Web ||
| `ip` | IP address of the user. **We can infer IP when not supplied to User Object, but cannot target experiments/features based on IP when it's inferred.** | `192.168.1.101` | All ||
| `ip` | IP address of the user. Inferred from the request to /initialize if not provided | `192.168.1.101` | All ||
| `country` | 2-letter country code of the user. This can be supplied or inferred, and we can target based on the country code in both cases. | `US` | All ||
| `locale` | Locale of the user. When using the Android or iOS SDK, this will be inferred if not provided. | `en_US` | Mobile ||
| `appVersion` | Version of the app the user is using. When using the Android or iOS SDK, this will be inferred if not provided. | `1.0.1` | Mobile ||
Expand Down
Loading