List all users in your project with pagination and filtering.
Retrieve all registered users with support for metadata-based filtering and partial user ID search. Results include user activity timestamps and custom metadata.
Query Parameters:
offset (int): Number of records to skip for pagination. Default: 0limit (int): Maximum records to return. Range: 1-100. Default: 10metadata_filter (str): JSON string filter for user metadata (supports nested JSON matching)partial_user_id (str): Partial user ID to search for (case-insensitive)Returns:
users (List[UserInfo]): List of user objectstotal (int): Total number of users matching the filtershas_more (bool): Whether more users are available beyond the current pagex >= 01 <= x <= 100