xbmcbackup/resources/lib/dropbox/base_team.py
2019-08-28 14:48:24 -05:00

2000 lines
71 KiB
Python

# -*- coding: utf-8 -*-
# Auto-generated by Stone, do not modify.
# flake8: noqa
# pylint: skip-file
from abc import ABCMeta, abstractmethod
import warnings
from . import (
async_,
auth,
common,
contacts,
file_properties,
file_requests,
files,
paper,
seen_state,
sharing,
team,
team_common,
team_log,
team_policies,
users,
users_common,
)
class DropboxTeamBase(object):
__metaclass__ = ABCMeta
@abstractmethod
def request(self, route, namespace, arg, arg_binary=None):
pass
# ------------------------------------------
# Routes in auth namespace
# ------------------------------------------
# Routes in contacts namespace
# ------------------------------------------
# Routes in file_properties namespace
def file_properties_templates_add_for_team(self,
name,
description,
fields):
"""
Add a template associated with a team. See
:meth:`file_properties_properties_add` to add properties to a file or
folder. Note: this endpoint will create team-owned templates.
:rtype: :class:`dropbox.file_properties.AddTemplateResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.file_properties.ModifyTemplateError`
"""
arg = file_properties.AddTemplateArg(name,
description,
fields)
r = self.request(
file_properties.templates_add_for_team,
'file_properties',
arg,
None,
)
return r
def file_properties_templates_get_for_team(self,
template_id):
"""
Get the schema for a specified template.
:param str template_id: An identifier for template added by route See
:meth:`file_properties_templates_add_for_user` or
:meth:`file_properties_templates_add_for_team`.
:rtype: :class:`dropbox.file_properties.GetTemplateResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.file_properties.TemplateError`
"""
arg = file_properties.GetTemplateArg(template_id)
r = self.request(
file_properties.templates_get_for_team,
'file_properties',
arg,
None,
)
return r
def file_properties_templates_list_for_team(self):
"""
Get the template identifiers for a team. To get the schema of each
template use :meth:`file_properties_templates_get_for_team`.
:rtype: :class:`dropbox.file_properties.ListTemplateResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.file_properties.TemplateError`
"""
arg = None
r = self.request(
file_properties.templates_list_for_team,
'file_properties',
arg,
None,
)
return r
def file_properties_templates_remove_for_team(self,
template_id):
"""
Permanently removes the specified template created from
:meth:`file_properties_templates_add_for_user`. All properties
associated with the template will also be removed. This action cannot be
undone.
:param str template_id: An identifier for a template created by
:meth:`file_properties_templates_add_for_user` or
:meth:`file_properties_templates_add_for_team`.
:rtype: None
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.file_properties.TemplateError`
"""
arg = file_properties.RemoveTemplateArg(template_id)
r = self.request(
file_properties.templates_remove_for_team,
'file_properties',
arg,
None,
)
return None
def file_properties_templates_update_for_team(self,
template_id,
name=None,
description=None,
add_fields=None):
"""
Update a template associated with a team. This route can update the
template name, the template description and add optional properties to
templates.
:param str template_id: An identifier for template added by See
:meth:`file_properties_templates_add_for_user` or
:meth:`file_properties_templates_add_for_team`.
:param Nullable name: A display name for the template. template names
can be up to 256 bytes.
:param Nullable description: Description for the new template. Template
descriptions can be up to 1024 bytes.
:param Nullable add_fields: Property field templates to be added to the
group template. There can be up to 32 properties in a single
template.
:rtype: :class:`dropbox.file_properties.UpdateTemplateResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.file_properties.ModifyTemplateError`
"""
arg = file_properties.UpdateTemplateArg(template_id,
name,
description,
add_fields)
r = self.request(
file_properties.templates_update_for_team,
'file_properties',
arg,
None,
)
return r
# ------------------------------------------
# Routes in file_requests namespace
# ------------------------------------------
# Routes in files namespace
# ------------------------------------------
# Routes in paper namespace
# ------------------------------------------
# Routes in sharing namespace
# ------------------------------------------
# Routes in team namespace
def team_devices_list_member_devices(self,
team_member_id,
include_web_sessions=True,
include_desktop_clients=True,
include_mobile_clients=True):
"""
List all device sessions of a team's member.
:param str team_member_id: The team's member id.
:param bool include_web_sessions: Whether to list web sessions of the
team's member.
:param bool include_desktop_clients: Whether to list linked desktop
devices of the team's member.
:param bool include_mobile_clients: Whether to list linked mobile
devices of the team's member.
:rtype: :class:`dropbox.team.ListMemberDevicesResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ListMemberDevicesError`
"""
arg = team.ListMemberDevicesArg(team_member_id,
include_web_sessions,
include_desktop_clients,
include_mobile_clients)
r = self.request(
team.devices_list_member_devices,
'team',
arg,
None,
)
return r
def team_devices_list_members_devices(self,
cursor=None,
include_web_sessions=True,
include_desktop_clients=True,
include_mobile_clients=True):
"""
List all device sessions of a team. Permission : Team member file
access.
:param Nullable cursor: At the first call to the
:meth:`team_devices_list_members_devices` the cursor shouldn't be
passed. Then, if the result of the call includes a cursor, the
following requests should include the received cursors in order to
receive the next sub list of team devices.
:param bool include_web_sessions: Whether to list web sessions of the
team members.
:param bool include_desktop_clients: Whether to list desktop clients of
the team members.
:param bool include_mobile_clients: Whether to list mobile clients of
the team members.
:rtype: :class:`dropbox.team.ListMembersDevicesResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ListMembersDevicesError`
"""
arg = team.ListMembersDevicesArg(cursor,
include_web_sessions,
include_desktop_clients,
include_mobile_clients)
r = self.request(
team.devices_list_members_devices,
'team',
arg,
None,
)
return r
def team_devices_list_team_devices(self,
cursor=None,
include_web_sessions=True,
include_desktop_clients=True,
include_mobile_clients=True):
"""
List all device sessions of a team. Permission : Team member file
access.
:param Nullable cursor: At the first call to the
:meth:`team_devices_list_team_devices` the cursor shouldn't be
passed. Then, if the result of the call includes a cursor, the
following requests should include the received cursors in order to
receive the next sub list of team devices.
:param bool include_web_sessions: Whether to list web sessions of the
team members.
:param bool include_desktop_clients: Whether to list desktop clients of
the team members.
:param bool include_mobile_clients: Whether to list mobile clients of
the team members.
:rtype: :class:`dropbox.team.ListTeamDevicesResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ListTeamDevicesError`
"""
warnings.warn(
'devices/list_team_devices is deprecated. Use devices/list_members_devices.',
DeprecationWarning,
)
arg = team.ListTeamDevicesArg(cursor,
include_web_sessions,
include_desktop_clients,
include_mobile_clients)
r = self.request(
team.devices_list_team_devices,
'team',
arg,
None,
)
return r
def team_devices_revoke_device_session(self,
arg):
"""
Revoke a device session of a team's member.
:type arg: :class:`dropbox.team.RevokeDeviceSessionArg`
:rtype: None
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.RevokeDeviceSessionError`
"""
r = self.request(
team.devices_revoke_device_session,
'team',
arg,
None,
)
return None
def team_devices_revoke_device_session_batch(self,
revoke_devices):
"""
Revoke a list of device sessions of team members.
:type revoke_devices: list
:rtype: :class:`dropbox.team.RevokeDeviceSessionBatchResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.RevokeDeviceSessionBatchError`
"""
arg = team.RevokeDeviceSessionBatchArg(revoke_devices)
r = self.request(
team.devices_revoke_device_session_batch,
'team',
arg,
None,
)
return r
def team_features_get_values(self,
features):
"""
Get the values for one or more featues. This route allows you to check
your account's capability for what feature you can access or what value
you have for certain features. Permission : Team information.
:param list features: A list of features in
:class:`dropbox.team.Feature`. If the list is empty, this route will
return :class:`dropbox.team.FeaturesGetValuesBatchError`.
:rtype: :class:`dropbox.team.FeaturesGetValuesBatchResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.FeaturesGetValuesBatchError`
"""
arg = team.FeaturesGetValuesBatchArg(features)
r = self.request(
team.features_get_values,
'team',
arg,
None,
)
return r
def team_get_info(self):
"""
Retrieves information about a team.
:rtype: :class:`dropbox.team.TeamGetInfoResult`
"""
arg = None
r = self.request(
team.get_info,
'team',
arg,
None,
)
return r
def team_groups_create(self,
group_name,
group_external_id=None,
group_management_type=None):
"""
Creates a new, empty group, with a requested name. Permission : Team
member management.
:param str group_name: Group name.
:param Nullable group_external_id: The creator of a team can associate
an arbitrary external ID to the group.
:param Nullable group_management_type: Whether the team can be managed
by selected users, or only by team admins.
:rtype: :class:`dropbox.team.GroupFullInfo`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.GroupCreateError`
"""
arg = team.GroupCreateArg(group_name,
group_external_id,
group_management_type)
r = self.request(
team.groups_create,
'team',
arg,
None,
)
return r
def team_groups_delete(self,
arg):
"""
Deletes a group. The group is deleted immediately. However the revoking
of group-owned resources may take additional time. Use the
:meth:`team_groups_job_status_get` to determine whether this process has
completed. Permission : Team member management.
:param arg: Argument for selecting a single group, either by group_id or
by external group ID.
:type arg: :class:`dropbox.team.GroupSelector`
:rtype: :class:`dropbox.team.LaunchEmptyResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.GroupDeleteError`
"""
r = self.request(
team.groups_delete,
'team',
arg,
None,
)
return r
def team_groups_get_info(self,
arg):
"""
Retrieves information about one or more groups. Note that the optional
field ``GroupFullInfo.members`` is not returned for system-managed
groups. Permission : Team Information.
:param arg: Argument for selecting a list of groups, either by
group_ids, or external group IDs.
:type arg: :class:`dropbox.team.GroupsSelector`
:rtype: list
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.GroupsGetInfoError`
"""
r = self.request(
team.groups_get_info,
'team',
arg,
None,
)
return r
def team_groups_job_status_get(self,
async_job_id):
"""
Once an async_job_id is returned from :meth:`team_groups_delete`,
:meth:`team_groups_members_add` , or :meth:`team_groups_members_remove`
use this method to poll the status of granting/revoking group members'
access to group-owned resources. Permission : Team member management.
:param str async_job_id: Id of the asynchronous job. This is the value
of a response returned from the method that launched the job.
:rtype: :class:`dropbox.team.PollEmptyResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.GroupsPollError`
"""
arg = async_.PollArg(async_job_id)
r = self.request(
team.groups_job_status_get,
'team',
arg,
None,
)
return r
def team_groups_list(self,
limit=1000):
"""
Lists groups on a team. Permission : Team Information.
:param int limit: Number of results to return per call.
:rtype: :class:`dropbox.team.GroupsListResult`
"""
arg = team.GroupsListArg(limit)
r = self.request(
team.groups_list,
'team',
arg,
None,
)
return r
def team_groups_list_continue(self,
cursor):
"""
Once a cursor has been retrieved from :meth:`team_groups_list`, use this
to paginate through all groups. Permission : Team Information.
:param str cursor: Indicates from what point to get the next set of
groups.
:rtype: :class:`dropbox.team.GroupsListResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.GroupsListContinueError`
"""
arg = team.GroupsListContinueArg(cursor)
r = self.request(
team.groups_list_continue,
'team',
arg,
None,
)
return r
def team_groups_members_add(self,
group,
members,
return_members=True):
"""
Adds members to a group. The members are added immediately. However the
granting of group-owned resources may take additional time. Use the
:meth:`team_groups_job_status_get` to determine whether this process has
completed. Permission : Team member management.
:param group: Group to which users will be added.
:type group: :class:`dropbox.team.GroupSelector`
:param list members: List of users to be added to the group.
:rtype: :class:`dropbox.team.GroupMembersChangeResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.GroupMembersAddError`
"""
arg = team.GroupMembersAddArg(group,
members,
return_members)
r = self.request(
team.groups_members_add,
'team',
arg,
None,
)
return r
def team_groups_members_list(self,
group,
limit=1000):
"""
Lists members of a group. Permission : Team Information.
:param group: The group whose members are to be listed.
:type group: :class:`dropbox.team.GroupSelector`
:param int limit: Number of results to return per call.
:rtype: :class:`dropbox.team.GroupsMembersListResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.GroupSelectorError`
"""
arg = team.GroupsMembersListArg(group,
limit)
r = self.request(
team.groups_members_list,
'team',
arg,
None,
)
return r
def team_groups_members_list_continue(self,
cursor):
"""
Once a cursor has been retrieved from :meth:`team_groups_members_list`,
use this to paginate through all members of the group. Permission : Team
information.
:param str cursor: Indicates from what point to get the next set of
groups.
:rtype: :class:`dropbox.team.GroupsMembersListResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.GroupsMembersListContinueError`
"""
arg = team.GroupsMembersListContinueArg(cursor)
r = self.request(
team.groups_members_list_continue,
'team',
arg,
None,
)
return r
def team_groups_members_remove(self,
group,
users,
return_members=True):
"""
Removes members from a group. The members are removed immediately.
However the revoking of group-owned resources may take additional time.
Use the :meth:`team_groups_job_status_get` to determine whether this
process has completed. This method permits removing the only owner of a
group, even in cases where this is not possible via the web client.
Permission : Team member management.
:param group: Group from which users will be removed.
:type group: :class:`dropbox.team.GroupSelector`
:param list users: List of users to be removed from the group.
:rtype: :class:`dropbox.team.GroupMembersChangeResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.GroupMembersRemoveError`
"""
arg = team.GroupMembersRemoveArg(group,
users,
return_members)
r = self.request(
team.groups_members_remove,
'team',
arg,
None,
)
return r
def team_groups_members_set_access_type(self,
group,
user,
access_type,
return_members=True):
"""
Sets a member's access type in a group. Permission : Team member
management.
:param access_type: New group access type the user will have.
:type access_type: :class:`dropbox.team.GroupAccessType`
:param bool return_members: Whether to return the list of members in the
group. Note that the default value will cause all the group members
to be returned in the response. This may take a long time for large
groups.
:rtype: list
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.GroupMemberSetAccessTypeError`
"""
arg = team.GroupMembersSetAccessTypeArg(group,
user,
access_type,
return_members)
r = self.request(
team.groups_members_set_access_type,
'team',
arg,
None,
)
return r
def team_groups_update(self,
group,
return_members=True,
new_group_name=None,
new_group_external_id=None,
new_group_management_type=None):
"""
Updates a group's name and/or external ID. Permission : Team member
management.
:param group: Specify a group.
:type group: :class:`dropbox.team.GroupSelector`
:param Nullable new_group_name: Optional argument. Set group name to
this if provided.
:param Nullable new_group_external_id: Optional argument. New group
external ID. If the argument is None, the group's external_id won't
be updated. If the argument is empty string, the group's external id
will be cleared.
:param Nullable new_group_management_type: Set new group management
type, if provided.
:rtype: :class:`dropbox.team.GroupFullInfo`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.GroupUpdateError`
"""
arg = team.GroupUpdateArgs(group,
return_members,
new_group_name,
new_group_external_id,
new_group_management_type)
r = self.request(
team.groups_update,
'team',
arg,
None,
)
return r
def team_linked_apps_list_member_linked_apps(self,
team_member_id):
"""
List all linked applications of the team member. Note, this endpoint
does not list any team-linked applications.
:param str team_member_id: The team member id.
:rtype: :class:`dropbox.team.ListMemberAppsResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ListMemberAppsError`
"""
arg = team.ListMemberAppsArg(team_member_id)
r = self.request(
team.linked_apps_list_member_linked_apps,
'team',
arg,
None,
)
return r
def team_linked_apps_list_members_linked_apps(self,
cursor=None):
"""
List all applications linked to the team members' accounts. Note, this
endpoint does not list any team-linked applications.
:param Nullable cursor: At the first call to the
:meth:`team_linked_apps_list_members_linked_apps` the cursor
shouldn't be passed. Then, if the result of the call includes a
cursor, the following requests should include the received cursors
in order to receive the next sub list of the team applications.
:rtype: :class:`dropbox.team.ListMembersAppsResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ListMembersAppsError`
"""
arg = team.ListMembersAppsArg(cursor)
r = self.request(
team.linked_apps_list_members_linked_apps,
'team',
arg,
None,
)
return r
def team_linked_apps_list_team_linked_apps(self,
cursor=None):
"""
List all applications linked to the team members' accounts. Note, this
endpoint doesn't list any team-linked applications.
:param Nullable cursor: At the first call to the
:meth:`team_linked_apps_list_team_linked_apps` the cursor shouldn't
be passed. Then, if the result of the call includes a cursor, the
following requests should include the received cursors in order to
receive the next sub list of the team applications.
:rtype: :class:`dropbox.team.ListTeamAppsResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ListTeamAppsError`
"""
warnings.warn(
'linked_apps/list_team_linked_apps is deprecated. Use linked_apps/list_members_linked_apps.',
DeprecationWarning,
)
arg = team.ListTeamAppsArg(cursor)
r = self.request(
team.linked_apps_list_team_linked_apps,
'team',
arg,
None,
)
return r
def team_linked_apps_revoke_linked_app(self,
app_id,
team_member_id,
keep_app_folder=True):
"""
Revoke a linked application of the team member.
:param str app_id: The application's unique id.
:param str team_member_id: The unique id of the member owning the
device.
:param bool keep_app_folder: Whether to keep the application dedicated
folder (in case the application uses one).
:rtype: None
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.RevokeLinkedAppError`
"""
arg = team.RevokeLinkedApiAppArg(app_id,
team_member_id,
keep_app_folder)
r = self.request(
team.linked_apps_revoke_linked_app,
'team',
arg,
None,
)
return None
def team_linked_apps_revoke_linked_app_batch(self,
revoke_linked_app):
"""
Revoke a list of linked applications of the team members.
:type revoke_linked_app: list
:rtype: :class:`dropbox.team.RevokeLinkedAppBatchResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.RevokeLinkedAppBatchError`
"""
arg = team.RevokeLinkedApiAppBatchArg(revoke_linked_app)
r = self.request(
team.linked_apps_revoke_linked_app_batch,
'team',
arg,
None,
)
return r
def team_member_space_limits_excluded_users_add(self,
users=None):
"""
Add users to member space limits excluded users list.
:param Nullable users: List of users to be added/removed.
:rtype: :class:`dropbox.team.ExcludedUsersUpdateResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ExcludedUsersUpdateError`
"""
arg = team.ExcludedUsersUpdateArg(users)
r = self.request(
team.member_space_limits_excluded_users_add,
'team',
arg,
None,
)
return r
def team_member_space_limits_excluded_users_list(self,
limit=1000):
"""
List member space limits excluded users.
:param int limit: Number of results to return per call.
:rtype: :class:`dropbox.team.ExcludedUsersListResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ExcludedUsersListError`
"""
arg = team.ExcludedUsersListArg(limit)
r = self.request(
team.member_space_limits_excluded_users_list,
'team',
arg,
None,
)
return r
def team_member_space_limits_excluded_users_list_continue(self,
cursor):
"""
Continue listing member space limits excluded users.
:param str cursor: Indicates from what point to get the next set of
users.
:rtype: :class:`dropbox.team.ExcludedUsersListResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ExcludedUsersListContinueError`
"""
arg = team.ExcludedUsersListContinueArg(cursor)
r = self.request(
team.member_space_limits_excluded_users_list_continue,
'team',
arg,
None,
)
return r
def team_member_space_limits_excluded_users_remove(self,
users=None):
"""
Remove users from member space limits excluded users list.
:param Nullable users: List of users to be added/removed.
:rtype: :class:`dropbox.team.ExcludedUsersUpdateResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ExcludedUsersUpdateError`
"""
arg = team.ExcludedUsersUpdateArg(users)
r = self.request(
team.member_space_limits_excluded_users_remove,
'team',
arg,
None,
)
return r
def team_member_space_limits_get_custom_quota(self,
users):
"""
Get users custom quota. Returns none as the custom quota if none was
set. A maximum of 1000 members can be specified in a single call.
:param list users: List of users.
:rtype: list
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.CustomQuotaError`
"""
arg = team.CustomQuotaUsersArg(users)
r = self.request(
team.member_space_limits_get_custom_quota,
'team',
arg,
None,
)
return r
def team_member_space_limits_remove_custom_quota(self,
users):
"""
Remove users custom quota. A maximum of 1000 members can be specified in
a single call.
:param list users: List of users.
:rtype: list
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.CustomQuotaError`
"""
arg = team.CustomQuotaUsersArg(users)
r = self.request(
team.member_space_limits_remove_custom_quota,
'team',
arg,
None,
)
return r
def team_member_space_limits_set_custom_quota(self,
users_and_quotas):
"""
Set users custom quota. Custom quota has to be at least 15GB. A maximum
of 1000 members can be specified in a single call.
:param list users_and_quotas: List of users and their custom quotas.
:rtype: list
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.SetCustomQuotaError`
"""
arg = team.SetCustomQuotaArg(users_and_quotas)
r = self.request(
team.member_space_limits_set_custom_quota,
'team',
arg,
None,
)
return r
def team_members_add(self,
new_members,
force_async=False):
"""
Adds members to a team. Permission : Team member management A maximum of
20 members can be specified in a single call. If no Dropbox account
exists with the email address specified, a new Dropbox account will be
created with the given email address, and that account will be invited
to the team. If a personal Dropbox account exists with the email address
specified in the call, this call will create a placeholder Dropbox
account for the user on the team and send an email inviting the user to
migrate their existing personal account onto the team. Team member
management apps are required to set an initial given_name and surname
for a user to use in the team invitation and for 'Perform as team
member' actions taken on the user before they become 'active'.
:param list new_members: Details of new members to be added to the team.
:param bool force_async: Whether to force the add to happen
asynchronously.
:rtype: :class:`dropbox.team.MembersAddLaunch`
"""
arg = team.MembersAddArg(new_members,
force_async)
r = self.request(
team.members_add,
'team',
arg,
None,
)
return r
def team_members_add_job_status_get(self,
async_job_id):
"""
Once an async_job_id is returned from :meth:`team_members_add` , use
this to poll the status of the asynchronous request. Permission : Team
member management.
:param str async_job_id: Id of the asynchronous job. This is the value
of a response returned from the method that launched the job.
:rtype: :class:`dropbox.team.MembersAddJobStatus`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.PollError`
"""
arg = async_.PollArg(async_job_id)
r = self.request(
team.members_add_job_status_get,
'team',
arg,
None,
)
return r
def team_members_get_info(self,
members):
"""
Returns information about multiple team members. Permission : Team
information This endpoint will return
``MembersGetInfoItem.id_not_found``, for IDs (or emails) that cannot be
matched to a valid team member.
:param list members: List of team members.
:rtype: list
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.MembersGetInfoError`
"""
arg = team.MembersGetInfoArgs(members)
r = self.request(
team.members_get_info,
'team',
arg,
None,
)
return r
def team_members_list(self,
limit=1000,
include_removed=False):
"""
Lists members of a team. Permission : Team information.
:param int limit: Number of results to return per call.
:param bool include_removed: Whether to return removed members.
:rtype: :class:`dropbox.team.MembersListResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.MembersListError`
"""
arg = team.MembersListArg(limit,
include_removed)
r = self.request(
team.members_list,
'team',
arg,
None,
)
return r
def team_members_list_continue(self,
cursor):
"""
Once a cursor has been retrieved from :meth:`team_members_list`, use
this to paginate through all team members. Permission : Team
information.
:param str cursor: Indicates from what point to get the next set of
members.
:rtype: :class:`dropbox.team.MembersListResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.MembersListContinueError`
"""
arg = team.MembersListContinueArg(cursor)
r = self.request(
team.members_list_continue,
'team',
arg,
None,
)
return r
def team_members_move_former_member_files(self,
user,
transfer_dest_id,
transfer_admin_id):
"""
Moves removed member's files to a different member. This endpoint
initiates an asynchronous job. To obtain the final result of the job,
the client should periodically poll
:meth:`team_members_move_former_member_files_job_status_check`.
Permission : Team member management.
:param transfer_dest_id: Files from the deleted member account will be
transferred to this user.
:type transfer_dest_id: :class:`dropbox.team.UserSelectorArg`
:param transfer_admin_id: Errors during the transfer process will be
sent via email to this user.
:type transfer_admin_id: :class:`dropbox.team.UserSelectorArg`
:rtype: :class:`dropbox.team.LaunchEmptyResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.MembersTransferFormerMembersFilesError`
"""
arg = team.MembersDataTransferArg(user,
transfer_dest_id,
transfer_admin_id)
r = self.request(
team.members_move_former_member_files,
'team',
arg,
None,
)
return r
def team_members_move_former_member_files_job_status_check(self,
async_job_id):
"""
Once an async_job_id is returned from
:meth:`team_members_move_former_member_files` , use this to poll the
status of the asynchronous request. Permission : Team member management.
:param str async_job_id: Id of the asynchronous job. This is the value
of a response returned from the method that launched the job.
:rtype: :class:`dropbox.team.PollEmptyResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.PollError`
"""
arg = async_.PollArg(async_job_id)
r = self.request(
team.members_move_former_member_files_job_status_check,
'team',
arg,
None,
)
return r
def team_members_recover(self,
user):
"""
Recover a deleted member. Permission : Team member management Exactly
one of team_member_id, email, or external_id must be provided to
identify the user account.
:param user: Identity of user to recover.
:type user: :class:`dropbox.team.UserSelectorArg`
:rtype: None
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.MembersRecoverError`
"""
arg = team.MembersRecoverArg(user)
r = self.request(
team.members_recover,
'team',
arg,
None,
)
return None
def team_members_remove(self,
user,
wipe_data=True,
transfer_dest_id=None,
transfer_admin_id=None,
keep_account=False):
"""
Removes a member from a team. Permission : Team member management
Exactly one of team_member_id, email, or external_id must be provided to
identify the user account. Accounts can be recovered via
:meth:`team_members_recover` for a 7 day period or until the account has
been permanently deleted or transferred to another account (whichever
comes first). Calling :meth:`team_members_add` while a user is still
recoverable on your team will return with
``MemberAddResult.user_already_on_team``. Accounts can have their files
transferred via the admin console for a limited time, based on the
version history length associated with the team (120 days for most
teams). This endpoint may initiate an asynchronous job. To obtain the
final result of the job, the client should periodically poll
:meth:`team_members_remove_job_status_get`.
:param Nullable transfer_dest_id: If provided, files from the deleted
member account will be transferred to this user.
:param Nullable transfer_admin_id: If provided, errors during the
transfer process will be sent via email to this user. If the
transfer_dest_id argument was provided, then this argument must be
provided as well.
:param bool keep_account: Downgrade the member to a Basic account. The
user will retain the email address associated with their Dropbox
account and data in their account that is not restricted to team
members. In order to keep the account the argument wipe_data should
be set to False.
:rtype: :class:`dropbox.team.LaunchEmptyResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.MembersRemoveError`
"""
arg = team.MembersRemoveArg(user,
wipe_data,
transfer_dest_id,
transfer_admin_id,
keep_account)
r = self.request(
team.members_remove,
'team',
arg,
None,
)
return r
def team_members_remove_job_status_get(self,
async_job_id):
"""
Once an async_job_id is returned from :meth:`team_members_remove` , use
this to poll the status of the asynchronous request. Permission : Team
member management.
:param str async_job_id: Id of the asynchronous job. This is the value
of a response returned from the method that launched the job.
:rtype: :class:`dropbox.team.PollEmptyResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.PollError`
"""
arg = async_.PollArg(async_job_id)
r = self.request(
team.members_remove_job_status_get,
'team',
arg,
None,
)
return r
def team_members_send_welcome_email(self,
arg):
"""
Sends welcome email to pending team member. Permission : Team member
management Exactly one of team_member_id, email, or external_id must be
provided to identify the user account. No-op if team member is not
pending.
:param arg: Argument for selecting a single user, either by
team_member_id, external_id or email.
:type arg: :class:`dropbox.team.UserSelectorArg`
:rtype: None
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.MembersSendWelcomeError`
"""
r = self.request(
team.members_send_welcome_email,
'team',
arg,
None,
)
return None
def team_members_set_admin_permissions(self,
user,
new_role):
"""
Updates a team member's permissions. Permission : Team member
management.
:param user: Identity of user whose role will be set.
:type user: :class:`dropbox.team.UserSelectorArg`
:param new_role: The new role of the member.
:type new_role: :class:`dropbox.team.AdminTier`
:rtype: :class:`dropbox.team.MembersSetPermissionsResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.MembersSetPermissionsError`
"""
arg = team.MembersSetPermissionsArg(user,
new_role)
r = self.request(
team.members_set_admin_permissions,
'team',
arg,
None,
)
return r
def team_members_set_profile(self,
user,
new_email=None,
new_external_id=None,
new_given_name=None,
new_surname=None,
new_persistent_id=None,
new_is_directory_restricted=None):
"""
Updates a team member's profile. Permission : Team member management.
:param user: Identity of user whose profile will be set.
:type user: :class:`dropbox.team.UserSelectorArg`
:param Nullable new_email: New email for member.
:param Nullable new_external_id: New external ID for member.
:param Nullable new_given_name: New given name for member.
:param Nullable new_surname: New surname for member.
:param Nullable new_persistent_id: New persistent ID. This field only
available to teams using persistent ID SAML configuration.
:param Nullable new_is_directory_restricted: New value for whether the
user is a directory restricted user.
:rtype: :class:`dropbox.team.TeamMemberInfo`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.MembersSetProfileError`
"""
arg = team.MembersSetProfileArg(user,
new_email,
new_external_id,
new_given_name,
new_surname,
new_persistent_id,
new_is_directory_restricted)
r = self.request(
team.members_set_profile,
'team',
arg,
None,
)
return r
def team_members_suspend(self,
user,
wipe_data=True):
"""
Suspend a member from a team. Permission : Team member management
Exactly one of team_member_id, email, or external_id must be provided to
identify the user account.
:param bool wipe_data: If provided, controls if the user's data will be
deleted on their linked devices.
:rtype: None
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.MembersSuspendError`
"""
arg = team.MembersDeactivateArg(user,
wipe_data)
r = self.request(
team.members_suspend,
'team',
arg,
None,
)
return None
def team_members_unsuspend(self,
user):
"""
Unsuspend a member from a team. Permission : Team member management
Exactly one of team_member_id, email, or external_id must be provided to
identify the user account.
:param user: Identity of user to unsuspend.
:type user: :class:`dropbox.team.UserSelectorArg`
:rtype: None
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.MembersUnsuspendError`
"""
arg = team.MembersUnsuspendArg(user)
r = self.request(
team.members_unsuspend,
'team',
arg,
None,
)
return None
def team_namespaces_list(self,
limit=1000):
"""
Returns a list of all team-accessible namespaces. This list includes
team folders, shared folders containing team members, team members' home
namespaces, and team members' app folders. Home namespaces and app
folders are always owned by this team or members of the team, but shared
folders may be owned by other users or other teams. Duplicates may occur
in the list.
:param int limit: Specifying a value here has no effect.
:rtype: :class:`dropbox.team.TeamNamespacesListResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.TeamNamespacesListError`
"""
arg = team.TeamNamespacesListArg(limit)
r = self.request(
team.namespaces_list,
'team',
arg,
None,
)
return r
def team_namespaces_list_continue(self,
cursor):
"""
Once a cursor has been retrieved from :meth:`team_namespaces_list`, use
this to paginate through all team-accessible namespaces. Duplicates may
occur in the list.
:param str cursor: Indicates from what point to get the next set of
team-accessible namespaces.
:rtype: :class:`dropbox.team.TeamNamespacesListResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.TeamNamespacesListContinueError`
"""
arg = team.TeamNamespacesListContinueArg(cursor)
r = self.request(
team.namespaces_list_continue,
'team',
arg,
None,
)
return r
def team_properties_template_add(self,
name,
description,
fields):
"""
Permission : Team member file access.
:rtype: :class:`dropbox.team.AddTemplateResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ModifyTemplateError`
"""
warnings.warn(
'properties/template/add is deprecated.',
DeprecationWarning,
)
arg = file_properties.AddTemplateArg(name,
description,
fields)
r = self.request(
team.properties_template_add,
'team',
arg,
None,
)
return r
def team_properties_template_get(self,
template_id):
"""
Permission : Team member file access.
:param str template_id: An identifier for template added by route See
:meth:`team_templates_add_for_user` or
:meth:`team_templates_add_for_team`.
:rtype: :class:`dropbox.team.GetTemplateResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.TemplateError`
"""
warnings.warn(
'properties/template/get is deprecated.',
DeprecationWarning,
)
arg = file_properties.GetTemplateArg(template_id)
r = self.request(
team.properties_template_get,
'team',
arg,
None,
)
return r
def team_properties_template_list(self):
"""
Permission : Team member file access.
:rtype: :class:`dropbox.team.ListTemplateResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.TemplateError`
"""
warnings.warn(
'properties/template/list is deprecated.',
DeprecationWarning,
)
arg = None
r = self.request(
team.properties_template_list,
'team',
arg,
None,
)
return r
def team_properties_template_update(self,
template_id,
name=None,
description=None,
add_fields=None):
"""
Permission : Team member file access.
:param str template_id: An identifier for template added by See
:meth:`team_templates_add_for_user` or
:meth:`team_templates_add_for_team`.
:param Nullable name: A display name for the template. template names
can be up to 256 bytes.
:param Nullable description: Description for the new template. Template
descriptions can be up to 1024 bytes.
:param Nullable add_fields: Property field templates to be added to the
group template. There can be up to 32 properties in a single
template.
:rtype: :class:`dropbox.team.UpdateTemplateResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.ModifyTemplateError`
"""
warnings.warn(
'properties/template/update is deprecated.',
DeprecationWarning,
)
arg = file_properties.UpdateTemplateArg(template_id,
name,
description,
add_fields)
r = self.request(
team.properties_template_update,
'team',
arg,
None,
)
return r
def team_reports_get_activity(self,
start_date=None,
end_date=None):
"""
Retrieves reporting data about a team's user activity.
:param Nullable start_date: Optional starting date (inclusive).
:param Nullable end_date: Optional ending date (exclusive).
:rtype: :class:`dropbox.team.GetActivityReport`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.DateRangeError`
"""
arg = team.DateRange(start_date,
end_date)
r = self.request(
team.reports_get_activity,
'team',
arg,
None,
)
return r
def team_reports_get_devices(self,
start_date=None,
end_date=None):
"""
Retrieves reporting data about a team's linked devices.
:param Nullable start_date: Optional starting date (inclusive).
:param Nullable end_date: Optional ending date (exclusive).
:rtype: :class:`dropbox.team.GetDevicesReport`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.DateRangeError`
"""
arg = team.DateRange(start_date,
end_date)
r = self.request(
team.reports_get_devices,
'team',
arg,
None,
)
return r
def team_reports_get_membership(self,
start_date=None,
end_date=None):
"""
Retrieves reporting data about a team's membership.
:param Nullable start_date: Optional starting date (inclusive).
:param Nullable end_date: Optional ending date (exclusive).
:rtype: :class:`dropbox.team.GetMembershipReport`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.DateRangeError`
"""
arg = team.DateRange(start_date,
end_date)
r = self.request(
team.reports_get_membership,
'team',
arg,
None,
)
return r
def team_reports_get_storage(self,
start_date=None,
end_date=None):
"""
Retrieves reporting data about a team's storage usage.
:param Nullable start_date: Optional starting date (inclusive).
:param Nullable end_date: Optional ending date (exclusive).
:rtype: :class:`dropbox.team.GetStorageReport`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.DateRangeError`
"""
arg = team.DateRange(start_date,
end_date)
r = self.request(
team.reports_get_storage,
'team',
arg,
None,
)
return r
def team_team_folder_activate(self,
team_folder_id):
"""
Sets an archived team folder's status to active. Permission : Team
member file access.
:param str team_folder_id: The ID of the team folder.
:rtype: :class:`dropbox.team.TeamFolderMetadata`
"""
arg = team.TeamFolderIdArg(team_folder_id)
r = self.request(
team.team_folder_activate,
'team',
arg,
None,
)
return r
def team_team_folder_archive(self,
team_folder_id,
force_async_off=False):
"""
Sets an active team folder's status to archived and removes all folder
and file members. Permission : Team member file access.
:param bool force_async_off: Whether to force the archive to happen
synchronously.
:rtype: :class:`dropbox.team.TeamFolderArchiveLaunch`
"""
arg = team.TeamFolderArchiveArg(team_folder_id,
force_async_off)
r = self.request(
team.team_folder_archive,
'team',
arg,
None,
)
return r
def team_team_folder_archive_check(self,
async_job_id):
"""
Returns the status of an asynchronous job for archiving a team folder.
Permission : Team member file access.
:param str async_job_id: Id of the asynchronous job. This is the value
of a response returned from the method that launched the job.
:rtype: :class:`dropbox.team.TeamFolderArchiveJobStatus`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.PollError`
"""
arg = async_.PollArg(async_job_id)
r = self.request(
team.team_folder_archive_check,
'team',
arg,
None,
)
return r
def team_team_folder_create(self,
name,
sync_setting=None):
"""
Creates a new, active, team folder with no members. Permission : Team
member file access.
:param str name: Name for the new team folder.
:param Nullable sync_setting: The sync setting to apply to this team
folder. Only permitted if the team has team selective sync enabled.
:rtype: :class:`dropbox.team.TeamFolderMetadata`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.TeamFolderCreateError`
"""
arg = team.TeamFolderCreateArg(name,
sync_setting)
r = self.request(
team.team_folder_create,
'team',
arg,
None,
)
return r
def team_team_folder_get_info(self,
team_folder_ids):
"""
Retrieves metadata for team folders. Permission : Team member file
access.
:param list team_folder_ids: The list of team folder IDs.
:rtype: list
"""
arg = team.TeamFolderIdListArg(team_folder_ids)
r = self.request(
team.team_folder_get_info,
'team',
arg,
None,
)
return r
def team_team_folder_list(self,
limit=1000):
"""
Lists all team folders. Permission : Team member file access.
:param int limit: The maximum number of results to return per request.
:rtype: :class:`dropbox.team.TeamFolderListResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.TeamFolderListError`
"""
arg = team.TeamFolderListArg(limit)
r = self.request(
team.team_folder_list,
'team',
arg,
None,
)
return r
def team_team_folder_list_continue(self,
cursor):
"""
Once a cursor has been retrieved from :meth:`team_team_folder_list`, use
this to paginate through all team folders. Permission : Team member file
access.
:param str cursor: Indicates from what point to get the next set of team
folders.
:rtype: :class:`dropbox.team.TeamFolderListResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.TeamFolderListContinueError`
"""
arg = team.TeamFolderListContinueArg(cursor)
r = self.request(
team.team_folder_list_continue,
'team',
arg,
None,
)
return r
def team_team_folder_permanently_delete(self,
team_folder_id):
"""
Permanently deletes an archived team folder. Permission : Team member
file access.
:param str team_folder_id: The ID of the team folder.
:rtype: None
"""
arg = team.TeamFolderIdArg(team_folder_id)
r = self.request(
team.team_folder_permanently_delete,
'team',
arg,
None,
)
return None
def team_team_folder_rename(self,
team_folder_id,
name):
"""
Changes an active team folder's name. Permission : Team member file
access.
:param str name: New team folder name.
:rtype: :class:`dropbox.team.TeamFolderMetadata`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.TeamFolderRenameError`
"""
arg = team.TeamFolderRenameArg(team_folder_id,
name)
r = self.request(
team.team_folder_rename,
'team',
arg,
None,
)
return r
def team_team_folder_update_sync_settings(self,
team_folder_id,
sync_setting=None,
content_sync_settings=None):
"""
Updates the sync settings on a team folder or its contents. Use of this
endpoint requires that the team has team selective sync enabled.
:param Nullable sync_setting: Sync setting to apply to the team folder
itself. Only meaningful if the team folder is not a shared team
root.
:param Nullable content_sync_settings: Sync settings to apply to
contents of this team folder.
:rtype: :class:`dropbox.team.TeamFolderMetadata`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.TeamFolderUpdateSyncSettingsError`
"""
arg = team.TeamFolderUpdateSyncSettingsArg(team_folder_id,
sync_setting,
content_sync_settings)
r = self.request(
team.team_folder_update_sync_settings,
'team',
arg,
None,
)
return r
def team_token_get_authenticated_admin(self):
"""
Returns the member profile of the admin who generated the team access
token used to make the call.
:rtype: :class:`dropbox.team.TokenGetAuthenticatedAdminResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team.TokenGetAuthenticatedAdminError`
"""
arg = None
r = self.request(
team.token_get_authenticated_admin,
'team',
arg,
None,
)
return r
# ------------------------------------------
# Routes in team_log namespace
def team_log_get_events(self,
limit=1000,
account_id=None,
time=None,
category=None):
"""
Retrieves team events. Events have a lifespan of two years. Events older
than two years will not be returned. Many attributes note 'may be
missing due to historical data gap'. Note that the file_operations
category and & analogous paper events are not available on all Dropbox
Business `plans </business/plans-comparison>`_. Use `features/get_values
</developers/documentation/http/teams#team-features-get_values>`_ to
check for this feature. Permission : Team Auditing.
:param int limit: The maximal number of results to return per call. Note
that some calls may not return ``limit`` number of events, and may
even return no events, even with `has_more` set to true. In this
case, callers should fetch again using
:meth:`team_log_get_events_continue`.
:param Nullable account_id: Filter the events by account ID. Return ony
events with this account_id as either Actor, Context, or
Participants.
:param Nullable time: Filter by time range.
:param Nullable category: Filter the returned events to a single
category.
:rtype: :class:`dropbox.team_log.GetTeamEventsResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team_log.GetTeamEventsError`
"""
arg = team_log.GetTeamEventsArg(limit,
account_id,
time,
category)
r = self.request(
team_log.get_events,
'team_log',
arg,
None,
)
return r
def team_log_get_events_continue(self,
cursor):
"""
Once a cursor has been retrieved from :meth:`team_log_get_events`, use
this to paginate through all events. Permission : Team Auditing.
:param str cursor: Indicates from what point to get the next set of
events.
:rtype: :class:`dropbox.team_log.GetTeamEventsResult`
:raises: :class:`.exceptions.ApiError`
If this raises, ApiError will contain:
:class:`dropbox.team_log.GetTeamEventsContinueError`
"""
arg = team_log.GetTeamEventsContinueArg(cursor)
r = self.request(
team_log.get_events_continue,
'team_log',
arg,
None,
)
return r
# ------------------------------------------
# Routes in users namespace