# skills_orgs_skills_users_point_percentile_retrieve Retrieve a user's total skill points and percentile ranking. This endpoint returns the total skill points a user has earned across all skills and their percentile ranking compared to other users on the platform. Path Parameters: org (str): The platform/organization identifier user_id (str): The username of the user to retrieve information for Returns: The user's total skill points and percentile ranking information: - Username - Total points earned across all skills - Percentile ranking compared to other users Access Control: - Platform admins can access any user's information - Users can access their own information Endpoint: GET /api/skills/orgs/{org}/skills/users/{user_id}/point-percentile/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Response 200 fields (application/json): - `username` (string, required) - `total_points` (number, required) - `percentile` (number, required) Percentile of points for user. If an was provided, this is the percentile of the user relative to users within the org.