Skip to main content

tw members

Run tw members -h to view supported member operations.

Manage organization members. Organization membership management requires organization OWNER permissions.

tw members list

List organization members.

tw members list [OPTIONS]

Options

OptionDescriptionRequiredDefault
-o, --organizationOrganization name or numeric ID. Specify either the unique organization name or the numeric organization ID returned by 'tw organizations list'.
-f, --filterFilter members by username prefix. Case-insensitive prefix matching on the username field (e.g., 'john' matches 'john.doe').
--pagePage number for paginated results (default: 1)
--offsetRow offset for paginated results (default: 0)
--maxMaximum number of records to display (default: )

Run tw members list -h view all the optional fields for listing organization members.

tw members list -o TestOrg2

Members for TestOrg2 organization:

ID | Username | Email | Role
-----------------+----------------------+---------------------------------+--------
200954501314303 | user1 | user1@domain.com | MEMBER
277776534946151 | user2 | user2@domain.com | MEMBER
243277166855716 | user3 | user3@domain.com | OWNER

tw members add

Add an organization member.

tw members add [OPTIONS]

Options

OptionDescriptionRequiredDefault
-u, --userUser email address to invite. If the user doesn't have a Seqera Platform account, they will receive an invitation email to join the organization.
-o, --organizationOrganization name or numeric ID. Specify either the unique organization name or the numeric organization ID returned by 'tw organizations list'.

Run tw members add -h view all the required and optional fields for adding organization members.

tw members add -u user1@domain.com -o DocTestOrg2

Member 'user1' with ID '134534064600266' was added in organization 'TestOrg2'

tw members delete

Remove an organization member.

tw members delete [OPTIONS]

Options

OptionDescriptionRequiredDefault
-u, --userUsername or email address of the member to remove. Removes the user from the organization and all associated teams and workspaces. Use 'tw members leave' to remove yourself.
-o, --organizationOrganization name or numeric ID. Specify either the unique organization name or the numeric organization ID returned by 'tw organizations list'.

Run tw members delete -h view all the required and optional fields for deleting organization members.

tw members delete -u user1 -o TestOrg2

Member 'user1' deleted from organization 'TestOrg2'

tw members update

Update an organization member role.

tw members update [OPTIONS]

Options

OptionDescriptionRequiredDefault
-u, --userUsername or email address of the member to update. Specify either their platform username or email address.
-r, --roleOrganization role to assign. OWNER: full administrative access including member management and billing. MEMBER: standard access with ability to create workspaces and teams. COLLABORATOR: limited access, cannot create resources but can participate in shared workspaces.
-o, --organizationOrganization name or numeric ID. Specify either the unique organization name or the numeric organization ID returned by 'tw organizations list'.

Run tw members update -h view all the required and optional fields for updating organization members.

tw members update -u user1 -r OWNER -o TestOrg2

Member 'user1' updated to role 'owner' in organization 'TestOrg2'

tw members leave

Leave an organization.

tw members leave [OPTIONS]

Options

OptionDescriptionRequiredDefault
-o, --organizationOrganization name or numeric ID to leave. Removes yourself from the organization and all associated teams and workspaces. Cannot be undone except by another member re-inviting you.

Run tw members leave -o <organization_name> to be removed from the given organization's members.

Example

tw members leave -o example-organization

# Output:
You have been removed from organization 'example-organization'