Teams#

class frameioclient.Team(client)#
add_members(team_id, emails)#

Add a list of users via their e-mail address to a given team.

Parameters:
  • team_id (string) – The team id.

  • emails (list) – The e-mails you want to add.

create(account_id, **kwargs)#

Create a Team

Parameters:

account_id (string) – The account id you want to create this team under.

Keyword Arguments::

(optional) kwargs: additional request parameters.

Example:

client.teams.create(
  account_id="6bdcb4d9-4548-4548-4548-27a6c024ae6b",
  name="My Awesome Project",
)
get(team_id)#

Get team by id

Parameters:

team_id (string) – the team’s id

get_members(team_id)#

Get the member list for a given team.

Parameters:

team_id (string) – The team id.

list(account_id, **kwargs)#

Get teams owned by the specified account. (To return all teams, use list_all())

Parameters:

account_id (string) – The account id.

list_all(**kwargs)#

Get all teams for the authenticated user.

Parameters:

account_id (string) – The account id.

list_projects(team_id, **kwargs)#

Get projects owned by the team.

Parameters:

team_id (string) – The team id.

remove_members(team_id, emails)#

Remove a list of users via their e-mail address from a given team.

Parameters:
  • team_id (string) – The team id.

  • emails (list) – The e-mails you want to add.