Retrieve a specific user by their ID
| Field | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Unique user identifier |
| projectId | string | Yes | Project this user belongs to |
| appUserId | string | No | Your app’s custom user identifier |
| string | No | User email address | |
| monthlyRevenue | number | No | User’s monthly revenue/subscription amount |
| country | string | No | User’s country |
| userPlatform | string | No | Platform (IOS, ANDROID, WEB, OTHER) |
| locale | string | No | User’s locale/language |
| createdAt | string | Yes | User creation timestamp (ISO 8601) |
| updatedAt | string | Yes | Last update timestamp (ISO 8601) |
| Status Code | Description | Example Response |
|---|---|---|
| 404 | User not found | {"error": "User not found"} |
| 401 | Unauthorized - Invalid API key | {"error": "Unauthorized"} |
| 500 | Internal server error | {"error": "Failed to get user"} |