OtherUserResource
Provides API access to other users' profiles and activities on the platform. This class enables fetching limited information about users, searching for users by name or email, and accessing user activity logs with appropriate privacy and access control measures in place.
Source code in src/specklepy/api/resources/current/other_user_resource.py
get
get(id: str) -> Optional[LimitedUser]
user_search
user_search(
query: str,
*,
limit: int = 25,
cursor: Optional[str] = None,
archived: bool = False,
emailOnly: bool = False,
) -> UserSearchResultCollection