Organization.member
Organization.member(name) → Member
Construct a new member instance that references a member in an organization by their username. You must be an administrator of the organization to view member details.
Parameters:
name
: str
The username of the member.
Returns:
Examples
organization = redivis.organization("Demo")
member = organization.member("imathews")
member.get()
print(dataset.properties) # Properties will be fully populated after calling .get()
Last updated
Was this helpful?