Methods
-
checkAndRefreshAccessToken()
-
Checks if a token is needed, can be refreshed and if the token is expired. If so, attempts to refresh access token
Returns:
- Type
- Promise.<*>
-
getAccessToken()
-
Get the access token
Returns:
Access token- Type
- String
-
getAccessTokenExpiresAt()
-
Gets the access token's expiration date
Returns:
date of token expiration- Type
- Date
-
getAccessTokenFromCode(redirectUri, code)
-
Get an OAuth2 access token from an OAuth2 Code.
Parameters:
Name Type Description redirectUriString A URL to redirect the user to after authenticating. This must be added to your app through the admin interface. codeString An OAuth2 code. Returns:
An object containing the token and related info (if applicable)- Type
- Object
-
getAuthenticationUrl(redirectUri [, state] [, authType] [, tokenAccessType] [, scope] [, includeGrantedScopes] [, usePKCE])
-
Get a URL that can be used to authenticate users for the Dropbox API.
Parameters:
Name Type Argument Default Description redirectUriString A URL to redirect the user to after authenticating. This must be added to your app through the admin interface. stateString <optional>
State that will be returned in the redirect URL to help prevent cross site scripting attacks. authTypeString <optional>
token auth type, defaults to 'token', other option is 'code' tokenAccessTypeString <optional>
null type of token to request. From the following: null - creates a token with the app default (either legacy or online) legacy - creates one long-lived token with no expiration online - create one short-lived token with an expiration offline - create one short-lived token with an expiration with a refresh token scopeArray.<String> <optional>
null scopes to request for the grant includeGrantedScopesString <optional>
none whether or not to include previously granted scopes. From the following: user - include user scopes in the grant team - include team scopes in the grant Note: if this user has never linked the app, include_granted_scopes must be None usePKCEboolean <optional>
false Whether or not to use Sha256 based PKCE. PKCE should be only use on client apps which doesn't call your server. It is less secure than non-PKCE flow but can be used if you are unable to safely retrieve your app secret Returns:
- Url to send user to for Dropbox API authentication returned in a promise- Type
- Promise.<String>
-
getClientId()
-
Get the client id
Returns:
Client id- Type
- String
-
getClientSecret()
-
Get the client secret
Returns:
Client secret- Type
- String
-
getCodeVerifier()
-
Gets the code verifier for PKCE flow
Returns:
- code verifier for PKCE- Type
- String
-
getRefreshToken()
-
Gets the refresh token
Returns:
Refresh token- Type
- String
-
refreshAccessToken(scope)
-
Refreshes the access token using the refresh token, if available
Parameters:
Name Type Default Description scopeArray.<String> null a subset of scopes from the original refresh to acquire with an access token Returns:
- Type
- Promise.<*>
-
setAccessToken(accessToken)
-
Set the access token used to authenticate requests to the API.
Parameters:
Name Type Description accessTokenString An access token Returns:
- Type
- undefined
-
setAccessTokenExpiresAt(accessTokenExpiresAt)
-
Sets the access token's expiration date
Parameters:
Name Type Description accessTokenExpiresAtnew expiration date -
setClientId(clientId)
-
Set the client id, which is used to help gain an access token.
Parameters:
Name Type Description clientIdString Your apps client id Returns:
- Type
- undefined
-
setClientSecret(clientSecret)
-
Set the client secret
Parameters:
Name Type Description clientSecretString Your app's client secret Returns:
- Type
- undefined
-
setCodeVerifier(codeVerifier)
-
Sets the code verifier for PKCE flow
Parameters:
Name Type Description codeVerifierString new code verifier -
setRefreshToken(refreshToken)
-
Sets the refresh token
Parameters:
Name Type Description refreshTokenA refresh token
Type Definitions
-
AccountPhotoSourceArg
-
Type:
- Object
Properties:
Name Type Argument Description base64_datastring <optional>
Available if .tag is base64_data. Image data in base64-encoded bytes. .tag'base64_data' | 'other' Tag identifying the union variant. -
AccountSetProfilePhotoArg
-
Type:
- Object
Properties:
Name Type Description photoAccountPhotoSourceArg Image to set as the user's new profile photo. -
AccountSetProfilePhotoError
-
Type:
- Object
Properties:
Name Type Description .tag'file_type_error' | 'file_size_error' | 'dimension_error' | 'thumbnail_error' | 'transient_error' | 'other' Tag identifying the union variant. -
AccountSetProfilePhotoResult
-
Type:
- Object
Properties:
Name Type Description profile_photo_urlstring URL for the photo representing the user, if one is set. -
AsyncLaunchEmptyResult
-
Result returned by methods that may either launch an asynchronous job or complete synchronously. Upon synchronous completion of the job, no additional information is returned.
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. .tag'async_job_id' | 'complete' Tag identifying the union variant. -
AsyncLaunchResultBase
-
Result returned by methods that launch an asynchronous job. A method who may either launch an asynchronous job, or complete the request synchronously, can use this union by extending it, and adding a 'complete' field with the type of the synchronous response. See LaunchEmptyResult for an example.
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. .tag'async_job_id' Tag identifying the union variant. -
AsyncPollArg
-
Arguments for methods that poll the status of an asynchronous job.
Type:
- Object
Properties:
Name Type Description async_job_idstring Id of the asynchronous job. This is the value of a response returned from the method that launched the job. -
AsyncPollEmptyResult
-
Result returned by methods that poll for the status of an asynchronous job. Upon completion of the job, no additional information is returned.
Type:
- Object
Properties:
Name Type Description .tag'in_progress' | 'complete' Tag identifying the union variant. -
AsyncPollError
-
Error returned by methods for polling the status of asynchronous job.
Type:
- Object
Properties:
Name Type Description .tag'invalid_async_job_id' | 'internal_error' | 'other' Tag identifying the union variant. -
AsyncPollResultBase
-
Result returned by methods that poll for the status of an asynchronous job. Unions that extend this union should add a 'complete' field with a type of the information returned upon job completion. See PollEmptyResult for an example.
Type:
- Object
Properties:
Name Type Description .tag'in_progress' Tag identifying the union variant. -
AuthAccessError
-
Error occurred because the account doesn't have permission to access the resource.
Type:
- Object
Properties:
Name Type Argument Description invalid_account_typeAuthInvalidAccountTypeError <optional>
Available if .tag is invalid_account_type. Current account type cannot access the resource. paper_access_deniedAuthPaperAccessError <optional>
Available if .tag is paper_access_denied. Current account cannot access Paper. .tag'invalid_account_type' | 'paper_access_denied' | 'other' Tag identifying the union variant. -
AuthAuthError
-
Errors occurred during authentication.
Type:
- Object
Properties:
Name Type Argument Description missing_scopeAuthTokenScopeError <optional>
Available if .tag is missing_scope. The access token does not have the required scope to access the route. .tag'invalid_access_token' | 'invalid_select_user' | 'invalid_select_admin' | 'user_suspended' | 'expired_access_token' | 'missing_scope' | 'route_access_denied' | 'other' Tag identifying the union variant. -
AuthInvalidAccountTypeError
-
Type:
- Object
Properties:
Name Type Description .tag'endpoint' | 'feature' | 'other' Tag identifying the union variant. -
AuthPaperAccessError
-
Type:
- Object
Properties:
Name Type Description .tag'paper_disabled' | 'not_paper_user' | 'other' Tag identifying the union variant. -
AuthRateLimitError
-
Error occurred because the app is being rate limited.
Type:
- Object
Properties:
Name Type Description reasonAuthRateLimitReason The reason why the app is being rate limited. retry_afternumber The number of seconds that the app should wait before making another request. -
AuthRateLimitReason
-
Type:
- Object
Properties:
Name Type Description .tag'too_many_requests' | 'too_many_write_operations' | 'other' Tag identifying the union variant. -
AuthTokenFromOAuth1Arg
-
Type:
- Object
Properties:
Name Type Description oauth1_tokenstring The supplied OAuth 1.0 access token. oauth1_token_secretstring The token secret associated with the supplied access token. -
AuthTokenFromOAuth1Error
-
Type:
- Object
Properties:
Name Type Description .tag'invalid_oauth1_token_info' | 'app_id_mismatch' | 'other' Tag identifying the union variant. -
AuthTokenFromOAuth1Result
-
Type:
- Object
Properties:
Name Type Description oauth2_tokenstring The OAuth 2.0 token generated from the supplied OAuth 1.0 token. -
AuthTokenScopeError
-
Type:
- Object
Properties:
Name Type Description required_scopestring The required scope to access the route. -
CheckEchoArg
-
EchoArg contains the arguments to be sent to the Dropbox servers.
Type:
- Object
Properties:
Name Type Description querystring The string that you'd like to be echoed back to you. -
CheckEchoResult
-
EchoResult contains the result returned from the Dropbox servers.
Type:
- Object
Properties:
Name Type Description resultstring If everything worked correctly, this would be the same as query. -
CommonPathRoot
-
Type:
- Object
Properties:
Name Type Argument Description rootstring <optional>
Available if .tag is root. Paths are relative to the authenticating user's root namespace (This results in :field:`PathRootError.invalid_root` if the user's root namespace has changed.). namespace_idstring <optional>
Available if .tag is namespace_id. Paths are relative to given namespace id (This results in :field:`PathRootError.no_permission` if you don't have access to this namespace.). .tag'home' | 'root' | 'namespace_id' | 'other' Tag identifying the union variant. -
CommonPathRootError
-
Type:
- Object
Properties:
Name Type Argument Description invalid_rootCommonTeamRootInfo | CommonUserRootInfo | CommonRootInfo <optional>
Available if .tag is invalid_root. The root namespace id in Dropbox-API-Path-Root header is not valid. The value of this error is the user's latest root info. .tag'invalid_root' | 'no_permission' | 'other' Tag identifying the union variant. -
CommonRootInfo
-
Information about current user's root.
Type:
- Object
Properties:
Name Type Description .tag"team" | "user" Tag identifying the subtype variant. root_namespace_idstring The namespace ID for user's root namespace. It will be the namespace ID of the shared team root if the user is member of a team with a separate team root. Otherwise it will be same as RootInfo.home_namespace_id. home_namespace_idstring The namespace ID for user's home namespace. -
CommonTeamRootInfo
-
Root info when user is member of a team with a separate root namespace ID.
Type:
- Object
Properties:
Name Type Argument Description .tag'team' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. root_namespace_idstring The namespace ID for user's root namespace. It will be the namespace ID of the shared team root if the user is member of a team with a separate team root. Otherwise it will be same as RootInfo.home_namespace_id. home_namespace_idstring The namespace ID for user's home namespace. home_pathstring The path for user's home directory under the shared team root. -
CommonUserRootInfo
-
Root info when user is not member of a team or the user is a member of a team and the team does not have a separate root namespace.
Type:
- Object
Properties:
Name Type Argument Description .tag'user' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. root_namespace_idstring The namespace ID for user's root namespace. It will be the namespace ID of the shared team root if the user is member of a team with a separate team root. Otherwise it will be same as RootInfo.home_namespace_id. home_namespace_idstring The namespace ID for user's home namespace. -
ContactsDeleteManualContactsArg
-
Type:
- Object
Properties:
Name Type Description email_addressesArray.<Object> List of manually added contacts to be deleted. -
ContactsDeleteManualContactsError
-
Type:
- Object
Properties:
Name Type Argument Description contacts_not_foundArray.<Object> <optional>
Available if .tag is contacts_not_found. Can't delete contacts from this list. Make sure the list only has manually added contacts. The deletion was cancelled. .tag'contacts_not_found' | 'other' Tag identifying the union variant. -
Error
-
An Error object returned from a route.
Type:
- Object
Properties:
Name Type Description error_summarystring Text summary of the error. errorT The error object. user_messageUserMessage An optional field. If present, it includes a message that can be shown directly to the end user of your app. You should show this message if your app is unprepared to programmatically handle the error returned by an endpoint. -
FilePropertiesAddPropertiesArg
-
Type:
- Object
Properties:
Name Type Description pathstring A unique identifier for the file or folder. property_groupsArray.<FilePropertiesPropertyGroup> The property groups which are to be added to a Dropbox file. No two groups in the input should refer to the same template. -
FilePropertiesAddPropertiesError
-
Type:
- Object
Properties:
Name Type Argument Description template_not_foundstring <optional>
Available if .tag is template_not_found. Template does not exist for the given identifier. pathFilePropertiesLookupError <optional>
Available if .tag is path. .tag'template_not_found' | 'restricted_content' | 'other' | 'path' | 'unsupported_folder' | 'property_field_too_large' | 'does_not_fit_template' | 'duplicate_property_groups' | 'property_group_already_exists' Tag identifying the union variant. -
FilePropertiesAddTemplateArg
-
Type:
- Object
Properties:
Name Type Description namestring Display name for the template. Template names can be up to 256 bytes. descriptionstring Description for the template. Template descriptions can be up to 1024 bytes. fieldsArray.<FilePropertiesPropertyFieldTemplate> Definitions of the property fields associated with this template. There can be up to 32 properties in a single template. -
FilePropertiesAddTemplateResult
-
Type:
- Object
Properties:
Name Type Description template_idstring An identifier for template added by See templates/add_for_user or templates/add_for_team. -
FilePropertiesGetTemplateArg
-
Type:
- Object
Properties:
Name Type Description template_idstring An identifier for template added by route See templates/add_for_user or templates/add_for_team. -
FilePropertiesGetTemplateResult
-
Type:
- Object
Properties:
Name Type Description namestring Display name for the template. Template names can be up to 256 bytes. descriptionstring Description for the template. Template descriptions can be up to 1024 bytes. fieldsArray.<FilePropertiesPropertyFieldTemplate> Definitions of the property fields associated with this template. There can be up to 32 properties in a single template. -
FilePropertiesInvalidPropertyGroupError
-
Type:
- Object
Properties:
Name Type Argument Description template_not_foundstring <optional>
Available if .tag is template_not_found. Template does not exist for the given identifier. pathFilePropertiesLookupError <optional>
Available if .tag is path. .tag'template_not_found' | 'restricted_content' | 'other' | 'path' | 'unsupported_folder' | 'property_field_too_large' | 'does_not_fit_template' | 'duplicate_property_groups' Tag identifying the union variant. -
FilePropertiesListTemplateResult
-
Type:
- Object
Properties:
Name Type Description template_idsArray.<Object> List of identifiers for templates added by See templates/add_for_user or templates/add_for_team. -
FilePropertiesLogicalOperator
-
Logical operator to join search queries together.
Type:
- Object
Properties:
Name Type Description .tag'or_operator' | 'other' Tag identifying the union variant. -
FilePropertiesLookupError
-
Type:
- Object
Properties:
Name Type Argument Description malformed_pathstring <optional>
Available if .tag is malformed_path. .tag'malformed_path' | 'not_found' | 'not_file' | 'not_folder' | 'restricted_content' | 'other' Tag identifying the union variant. -
FilePropertiesLookUpPropertiesError
-
Type:
- Object
Properties:
Name Type Description .tag'property_group_not_found' | 'other' Tag identifying the union variant. -
FilePropertiesModifyTemplateError
-
Type:
- Object
Properties:
Name Type Argument Description template_not_foundstring <optional>
Available if .tag is template_not_found. Template does not exist for the given identifier. .tag'template_not_found' | 'restricted_content' | 'other' | 'conflicting_property_names' | 'too_many_properties' | 'too_many_templates' | 'template_attribute_too_large' Tag identifying the union variant. -
FilePropertiesOverwritePropertyGroupArg
-
Type:
- Object
Properties:
Name Type Description pathstring A unique identifier for the file or folder. property_groupsArray.<FilePropertiesPropertyGroup> The property groups "snapshot" updates to force apply. No two groups in the input should refer to the same template. -
FilePropertiesPropertiesError
-
Type:
- Object
Properties:
Name Type Argument Description template_not_foundstring <optional>
Available if .tag is template_not_found. Template does not exist for the given identifier. pathFilePropertiesLookupError <optional>
Available if .tag is path. .tag'template_not_found' | 'restricted_content' | 'other' | 'path' | 'unsupported_folder' Tag identifying the union variant. -
FilePropertiesPropertiesSearchArg
-
Type:
- Object
Properties:
Name Type Description queriesArray.<FilePropertiesPropertiesSearchQuery> Queries to search. template_filterFilePropertiesTemplateFilter Filter results to contain only properties associated with these template IDs. -
FilePropertiesPropertiesSearchContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring The cursor returned by your last call to properties/search or properties/search/continue. -
FilePropertiesPropertiesSearchContinueError
-
Type:
- Object
Properties:
Name Type Description .tag'reset' | 'other' Tag identifying the union variant. -
FilePropertiesPropertiesSearchError
-
Type:
- Object
Properties:
Name Type Argument Description property_group_lookupFilePropertiesLookUpPropertiesError <optional>
Available if .tag is property_group_lookup. .tag'property_group_lookup' | 'other' Tag identifying the union variant. -
FilePropertiesPropertiesSearchMatch
-
Type:
- Object
Properties:
Name Type Description idstring The ID for the matched file or folder. pathstring The path for the matched file or folder. is_deletedboolean Whether the file or folder is deleted. property_groupsArray.<FilePropertiesPropertyGroup> List of custom property groups associated with the file. -
FilePropertiesPropertiesSearchMode
-
Type:
- Object
Properties:
Name Type Argument Description field_namestring <optional>
Available if .tag is field_name. Search for a value associated with this field name. .tag'field_name' | 'other' Tag identifying the union variant. -
FilePropertiesPropertiesSearchQuery
-
Type:
- Object
Properties:
Name Type Description querystring The property field value for which to search across templates. modeFilePropertiesPropertiesSearchMode The mode with which to perform the search. logical_operatorFilePropertiesLogicalOperator The logical operator with which to append the query. -
FilePropertiesPropertiesSearchResult
-
Type:
- Object
Properties:
Name Type Argument Description matchesArray.<FilePropertiesPropertiesSearchMatch> A list (possibly empty) of matches for the query. cursorstring <optional>
Pass the cursor into properties/search/continue to continue to receive search results. Cursor will be null when there are no more results. -
FilePropertiesPropertyField
-
Raw key/value data to be associated with a Dropbox file. Property fields are added to Dropbox files as a PropertyGroup.
Type:
- Object
Properties:
Name Type Description namestring Key of the property field associated with a file and template. Keys can be up to 256 bytes. valuestring Value of the property field associated with a file and template. Values can be up to 1024 bytes. -
FilePropertiesPropertyFieldTemplate
-
Defines how a single property field may be structured. Used exclusively by PropertyGroupTemplate.
Type:
- Object
Properties:
Name Type Description namestring Key of the property field being described. Property field keys can be up to 256 bytes. descriptionstring Description of the property field. Property field descriptions can be up to 1024 bytes. typeFilePropertiesPropertyType Data type of the value of this property field. This type will be enforced upon property creation and modifications. -
FilePropertiesPropertyGroup
-
A subset of the property fields described by the corresponding PropertyGroupTemplate. Properties are always added to a Dropbox file as a PropertyGroup. The possible key names and value types in this group are defined by the corresponding PropertyGroupTemplate.
Type:
- Object
Properties:
Name Type Description template_idstring A unique identifier for the associated template. fieldsArray.<FilePropertiesPropertyField> The actual properties associated with the template. There can be up to 32 property types per template. -
FilePropertiesPropertyGroupTemplate
-
Defines how a property group may be structured.
Type:
- Object
Properties:
Name Type Description namestring Display name for the template. Template names can be up to 256 bytes. descriptionstring Description for the template. Template descriptions can be up to 1024 bytes. fieldsArray.<FilePropertiesPropertyFieldTemplate> Definitions of the property fields associated with this template. There can be up to 32 properties in a single template. -
FilePropertiesPropertyGroupUpdate
-
Type:
- Object
Properties:
Name Type Argument Description template_idstring A unique identifier for a property template. add_or_update_fieldsArray.<FilePropertiesPropertyField> <optional>
Property fields to update. If the property field already exists, it is updated. If the property field doesn't exist, the property group is added. remove_fieldsArray.<string> <optional>
Property fields to remove (by name), provided they exist. -
FilePropertiesPropertyType
-
Data type of the given property field added.
Type:
- Object
Properties:
Name Type Description .tag'string' | 'other' Tag identifying the union variant. -
FilePropertiesRemovePropertiesArg
-
Type:
- Object
Properties:
Name Type Description pathstring A unique identifier for the file or folder. property_template_idsArray.<Object> A list of identifiers for a template created by templates/add_for_user or templates/add_for_team. -
FilePropertiesRemovePropertiesError
-
Type:
- Object
Properties:
Name Type Argument Description template_not_foundstring <optional>
Available if .tag is template_not_found. Template does not exist for the given identifier. pathFilePropertiesLookupError <optional>
Available if .tag is path. property_group_lookupFilePropertiesLookUpPropertiesError <optional>
Available if .tag is property_group_lookup. .tag'template_not_found' | 'restricted_content' | 'other' | 'path' | 'unsupported_folder' | 'property_group_lookup' Tag identifying the union variant. -
FilePropertiesRemoveTemplateArg
-
Type:
- Object
Properties:
Name Type Description template_idstring An identifier for a template created by templates/add_for_user or templates/add_for_team. -
FilePropertiesTemplateError
-
Type:
- Object
Properties:
Name Type Argument Description template_not_foundstring <optional>
Available if .tag is template_not_found. Template does not exist for the given identifier. .tag'template_not_found' | 'restricted_content' | 'other' Tag identifying the union variant. -
FilePropertiesTemplateFilter
-
Type:
- Object
Properties:
Name Type Argument Description filter_someArray.<Object> <optional>
Available if .tag is filter_some. Only templates with an ID in the supplied list will be returned (a subset of templates will be returned). .tag'filter_some' | 'other' | 'filter_none' Tag identifying the union variant. -
FilePropertiesTemplateFilterBase
-
Type:
- Object
Properties:
Name Type Argument Description filter_someArray.<Object> <optional>
Available if .tag is filter_some. Only templates with an ID in the supplied list will be returned (a subset of templates will be returned). .tag'filter_some' | 'other' Tag identifying the union variant. -
FilePropertiesTemplateOwnerType
-
Type:
- Object
Properties:
Name Type Description .tag'user' | 'team' | 'other' Tag identifying the union variant. -
FilePropertiesUpdatePropertiesArg
-
Type:
- Object
Properties:
Name Type Description pathstring A unique identifier for the file or folder. update_property_groupsArray.<FilePropertiesPropertyGroupUpdate> - The property groups "delta" updates to apply. -
FilePropertiesUpdatePropertiesError
-
Type:
- Object
Properties:
Name Type Argument Description template_not_foundstring <optional>
Available if .tag is template_not_found. Template does not exist for the given identifier. pathFilePropertiesLookupError <optional>
Available if .tag is path. property_group_lookupFilePropertiesLookUpPropertiesError <optional>
Available if .tag is property_group_lookup. .tag'template_not_found' | 'restricted_content' | 'other' | 'path' | 'unsupported_folder' | 'property_field_too_large' | 'does_not_fit_template' | 'duplicate_property_groups' | 'property_group_lookup' Tag identifying the union variant. -
FilePropertiesUpdateTemplateArg
-
Type:
- Object
Properties:
Name Type Argument Description template_idstring An identifier for template added by See templates/add_for_user or templates/add_for_team. namestring <optional>
A display name for the template. template names can be up to 256 bytes. descriptionstring <optional>
Description for the new template. Template descriptions can be up to 1024 bytes. add_fieldsArray.<FilePropertiesPropertyFieldTemplate> <optional>
Property field templates to be added to the group template. There can be up to 32 properties in a single template. -
FilePropertiesUpdateTemplateResult
-
Type:
- Object
Properties:
Name Type Description template_idstring An identifier for template added by route See templates/add_for_user or templates/add_for_team. -
FileRequestsCountFileRequestsError
-
There was an error counting the file requests.
Type:
- Object
Properties:
Name Type Description .tag'disabled_for_team' | 'other' Tag identifying the union variant. -
FileRequestsCountFileRequestsResult
-
Result for count.
Type:
- Object
Properties:
Name Type Description file_request_countnumber The number file requests owner by this user. -
FileRequestsCreateFileRequestArgs
-
Arguments for create.
Type:
- Object
Properties:
Name Type Argument Description titlestring The title of the file request. Must not be empty. destinationstring The path of the folder in the Dropbox where uploaded files will be sent. For apps with the app folder permission, this will be relative to the app folder. deadlineFileRequestsFileRequestDeadline <optional>
The deadline for the file request. Deadlines can only be set by Professional and Business accounts. openboolean Whether or not the file request should be open. If the file request is closed, it will not accept any file submissions, but it can be opened later. descriptionstring <optional>
A description of the file request. -
FileRequestsCreateFileRequestError
-
There was an error creating the file request.
Type:
- Object
Properties:
Name Type Description .tag'disabled_for_team' | 'other' | 'not_found' | 'not_a_folder' | 'app_lacks_access' | 'no_permission' | 'email_unverified' | 'validation_error' | 'invalid_location' | 'rate_limit' Tag identifying the union variant. -
FileRequestsDeleteAllClosedFileRequestsError
-
There was an error deleting all closed file requests.
Type:
- Object
Properties:
Name Type Description .tag'disabled_for_team' | 'other' | 'not_found' | 'not_a_folder' | 'app_lacks_access' | 'no_permission' | 'email_unverified' | 'validation_error' Tag identifying the union variant. -
FileRequestsDeleteAllClosedFileRequestsResult
-
Result for delete_all_closed.
Type:
- Object
Properties:
Name Type Description file_requestsArray.<FileRequestsFileRequest> The file requests deleted for this user. -
FileRequestsDeleteFileRequestArgs
-
Arguments for delete.
Type:
- Object
Properties:
Name Type Description idsArray.<Object> List IDs of the file requests to delete. -
FileRequestsDeleteFileRequestError
-
There was an error deleting these file requests.
Type:
- Object
Properties:
Name Type Description .tag'disabled_for_team' | 'other' | 'not_found' | 'not_a_folder' | 'app_lacks_access' | 'no_permission' | 'email_unverified' | 'validation_error' | 'file_request_open' Tag identifying the union variant. -
FileRequestsDeleteFileRequestsResult
-
Result for delete.
Type:
- Object
Properties:
Name Type Description file_requestsArray.<FileRequestsFileRequest> The file requests deleted by the request. -
FileRequestsFileRequest
-
A file request https://www.dropbox.com/help/9090 for receiving files into the user's Dropbox account.
Type:
- Object
Properties:
Name Type Argument Description idstring The ID of the file request. urlstring The URL of the file request. titlestring The title of the file request. createdTimestamp When this file request was created. is_openboolean Whether or not the file request is open. If the file request is closed, it will not accept any more file submissions. file_countnumber The number of files this file request has received. destinationstring <optional>
The path of the folder in the Dropbox where uploaded files will be sent. This can be null if the destination was removed. For apps with the app folder permission, this will be relative to the app folder. deadlineFileRequestsFileRequestDeadline <optional>
The deadline for this file request. Only set if the request has a deadline. descriptionstring <optional>
A description of the file request. -
FileRequestsFileRequestDeadline
-
Type:
- Object
Properties:
Name Type Argument Description deadlineTimestamp The deadline for this file request. allow_late_uploadsFileRequestsGracePeriod <optional>
If set, allow uploads after the deadline has passed. These uploads will be marked overdue. -
FileRequestsFileRequestError
-
There is an error with the file request.
Type:
- Object
Properties:
Name Type Description .tag'disabled_for_team' | 'other' | 'not_found' | 'not_a_folder' | 'app_lacks_access' | 'no_permission' | 'email_unverified' | 'validation_error' Tag identifying the union variant. -
FileRequestsGeneralFileRequestsError
-
There is an error accessing the file requests functionality.
Type:
- Object
Properties:
Name Type Description .tag'disabled_for_team' | 'other' Tag identifying the union variant. -
FileRequestsGetFileRequestArgs
-
Arguments for get.
Type:
- Object
Properties:
Name Type Description idstring The ID of the file request to retrieve. -
FileRequestsGetFileRequestError
-
There was an error retrieving the specified file request.
Type:
- Object
Properties:
Name Type Description .tag'disabled_for_team' | 'other' | 'not_found' | 'not_a_folder' | 'app_lacks_access' | 'no_permission' | 'email_unverified' | 'validation_error' Tag identifying the union variant. -
FileRequestsGracePeriod
-
Type:
- Object
Properties:
Name Type Description .tag'one_day' | 'two_days' | 'seven_days' | 'thirty_days' | 'always' | 'other' Tag identifying the union variant. -
FileRequestsListFileRequestsArg
-
Arguments for list:2.
Type:
- Object
Properties:
Name Type Description limitnumber The maximum number of file requests that should be returned per request. -
FileRequestsListFileRequestsContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring The cursor returned by the previous API call specified in the endpoint description. -
FileRequestsListFileRequestsContinueError
-
There was an error retrieving the file requests.
Type:
- Object
Properties:
Name Type Description .tag'disabled_for_team' | 'other' | 'invalid_cursor' Tag identifying the union variant. -
FileRequestsListFileRequestsError
-
There was an error retrieving the file requests.
Type:
- Object
Properties:
Name Type Description .tag'disabled_for_team' | 'other' Tag identifying the union variant. -
FileRequestsListFileRequestsResult
-
Result for list.
Type:
- Object
Properties:
Name Type Description file_requestsArray.<FileRequestsFileRequest> The file requests owned by this user. Apps with the app folder permission will only see file requests in their app folder. -
FileRequestsListFileRequestsV2Result
-
Result for list:2 and list/continue.
Type:
- Object
Properties:
Name Type Description file_requestsArray.<FileRequestsFileRequest> The file requests owned by this user. Apps with the app folder permission will only see file requests in their app folder. cursorstring Pass the cursor into list/continue to obtain additional file requests. has_moreboolean Is true if there are additional file requests that have not been returned yet. An additional call to :route:list/continue` can retrieve them. -
FileRequestsUpdateFileRequestArgs
-
Arguments for update.
Type:
- Object
Properties:
Name Type Argument Description idstring The ID of the file request to update. titlestring <optional>
The new title of the file request. Must not be empty. destinationstring <optional>
The new path of the folder in the Dropbox where uploaded files will be sent. For apps with the app folder permission, this will be relative to the app folder. deadlineFileRequestsUpdateFileRequestDeadline The new deadline for the file request. Deadlines can only be set by Professional and Business accounts. openboolean <optional>
Whether to set this file request as open or closed. descriptionstring <optional>
The description of the file request. -
FileRequestsUpdateFileRequestDeadline
-
Type:
- Object
Properties:
Name Type Argument Description updateFileRequestsFileRequestDeadline <optional>
Available if .tag is update. If :val:`null`, the file request's deadline is cleared. .tag'no_update' | 'update' | 'other' Tag identifying the union variant. -
FileRequestsUpdateFileRequestError
-
There is an error updating the file request.
Type:
- Object
Properties:
Name Type Description .tag'disabled_for_team' | 'other' | 'not_found' | 'not_a_folder' | 'app_lacks_access' | 'no_permission' | 'email_unverified' | 'validation_error' Tag identifying the union variant. -
FilesAddTagArg
-
Type:
- Object
Properties:
Name Type Description pathstring Path to the item to be tagged. tag_textstring The value of the tag to add. Will be automatically converted to lowercase letters. -
FilesAddTagError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'other' | 'too_many_tags' Tag identifying the union variant. -
FilesAlphaGetMetadataArg
-
Type:
- Object
Properties:
Name Type Argument Description pathstring The path of a file or folder on Dropbox. include_media_infoboolean If true, FileMetadata.media_info is set for photo and video. include_deletedboolean If true, DeletedMetadata will be returned for deleted file or folder, otherwise LookupError.not_found will be returned. include_has_explicit_shared_membersboolean If true, the results will include a flag for each file indicating whether or not that file has any explicit members. include_property_groupsFilePropertiesTemplateFilterBase <optional>
If set to a valid list of template IDs, FileMetadata.property_groups is set if there exists property data associated with the file and each of the listed templates. include_property_templatesArray.<Object> <optional>
If set to a valid list of template IDs, FileMetadata.property_groups is set for files with custom properties. -
FilesAlphaGetMetadataError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. properties_errorFilePropertiesLookUpPropertiesError <optional>
Available if .tag is properties_error. .tag'path' | 'properties_error' Tag identifying the union variant. -
FilesBaseTagError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'other' Tag identifying the union variant. -
FilesCommitInfo
-
Type:
- Object
Properties:
Name Type Argument Description pathstring Path in the user's Dropbox to save the file. modeFilesWriteMode Selects what to do if the file already exists. autorenameboolean If there's a conflict, as determined by mode, have the Dropbox server try to autorename the file to avoid conflict. client_modifiedTimestamp <optional>
The value to store as the client_modified timestamp. Dropbox automatically records the time at which the file was written to the Dropbox servers. It can also record an additional timestamp, provided by Dropbox desktop clients, mobile clients, and API apps of when the file was actually created or modified. muteboolean Normally, users are made aware of any file modifications in their Dropbox account via notifications in the client software. If true, this tells the clients that this modification shouldn't result in a user notification. property_groupsArray.<FilePropertiesPropertyGroup> <optional>
List of custom properties to add to file. strict_conflictboolean Be more strict about how each WriteMode detects conflict. For example, always return a conflict error when mode = WriteMode.update and the given "rev" doesn't match the existing file's "rev", even if the existing file has been deleted. This also forces a conflict even when the target path refers to a file with identical contents. -
FilesContentSyncSetting
-
Type:
- Object
Properties:
Name Type Description idstring Id of the item this setting is applied to. sync_settingFilesSyncSetting Setting for this item. -
FilesContentSyncSettingArg
-
Type:
- Object
Properties:
Name Type Description idstring Id of the item this setting is applied to. sync_settingFilesSyncSettingArg Setting for this item. -
FilesCreateFolderArg
-
Type:
- Object
Properties:
Name Type Description pathstring Path in the user's Dropbox to create. autorenameboolean If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict. -
FilesCreateFolderBatchArg
-
Type:
- Object
Properties:
Name Type Description pathsArray.<Object> List of paths to be created in the user's Dropbox. Duplicate path arguments in the batch are considered only once. autorenameboolean If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict. force_asyncboolean Whether to force the create to happen asynchronously. -
FilesCreateFolderBatchError
-
Type:
- Object
Properties:
Name Type Description .tag'too_many_files' | 'other' Tag identifying the union variant. -
FilesCreateFolderBatchJobStatus
-
Type:
- Object
Properties:
Name Type Argument Description completeFilesCreateFolderBatchResult <optional>
Available if .tag is complete. The batch create folder has finished. failedFilesCreateFolderBatchError <optional>
Available if .tag is failed. The batch create folder has failed. .tag'in_progress' | 'complete' | 'failed' | 'other' Tag identifying the union variant. -
FilesCreateFolderBatchLaunch
-
Result returned by create_folder_batch that may either launch an asynchronous job or complete synchronously.
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. completeFilesCreateFolderBatchResult <optional>
Available if .tag is complete. .tag'async_job_id' | 'complete' | 'other' Tag identifying the union variant. -
FilesCreateFolderBatchResult
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesCreateFolderBatchResultEntry> Each entry in CreateFolderBatchArg.paths will appear at the same position inside CreateFolderBatchResult.entries. -
FilesCreateFolderBatchResultEntry
-
Type:
- Object
Properties:
Name Type Argument Description successFilesCreateFolderEntryResult <optional>
Available if .tag is success. failureFilesCreateFolderEntryError <optional>
Available if .tag is failure. .tag'success' | 'failure' Tag identifying the union variant. -
FilesCreateFolderEntryError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesWriteError <optional>
Available if .tag is path. .tag'path' | 'other' Tag identifying the union variant. -
FilesCreateFolderEntryResult
-
Type:
- Object
Properties:
Name Type Description metadataFilesFolderMetadata Metadata of the created folder. -
FilesCreateFolderError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesWriteError <optional>
Available if .tag is path. .tag'path' Tag identifying the union variant. -
FilesCreateFolderResult
-
Type:
- Object
Properties:
Name Type Description metadataFilesFolderMetadata Metadata of the created folder. -
FilesDeleteArg
-
Type:
- Object
Properties:
Name Type Argument Description pathstring Path in the user's Dropbox to delete. parent_revstring <optional>
Perform delete if given "rev" matches the existing file's latest "rev". This field does not support deleting a folder. -
FilesDeleteBatchArg
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesDeleteArg> -
FilesDeleteBatchError
-
Type:
- Object
Properties:
Name Type Description .tag'too_many_write_operations' | 'other' Tag identifying the union variant. -
FilesDeleteBatchJobStatus
-
Type:
- Object
Properties:
Name Type Argument Description completeFilesDeleteBatchResult <optional>
Available if .tag is complete. The batch delete has finished. failedFilesDeleteBatchError <optional>
Available if .tag is failed. The batch delete has failed. .tag'in_progress' | 'complete' | 'failed' | 'other' Tag identifying the union variant. -
FilesDeleteBatchLaunch
-
Result returned by delete_batch that may either launch an asynchronous job or complete synchronously.
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. completeFilesDeleteBatchResult <optional>
Available if .tag is complete. .tag'async_job_id' | 'complete' | 'other' Tag identifying the union variant. -
FilesDeleteBatchResult
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesDeleteBatchResultEntry> Each entry in DeleteBatchArg.entries will appear at the same position inside DeleteBatchResult.entries. -
FilesDeleteBatchResultData
-
Type:
- Object
Properties:
Name Type Description metadataFilesFileMetadata | FilesFolderMetadata | FilesDeletedMetadata Metadata of the deleted object. -
FilesDeleteBatchResultEntry
-
Type:
- Object
Properties:
Name Type Argument Description successFilesDeleteBatchResultData <optional>
Available if .tag is success. failureFilesDeleteError <optional>
Available if .tag is failure. .tag'success' | 'failure' Tag identifying the union variant. -
FilesDeletedMetadata
-
Indicates that there used to be a file or folder at this path, but it no longer exists.
Type:
- Object
Properties:
Name Type Argument Description .tag'deleted' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. namestring The last component of the path (including extension). This never contains a slash. path_lowerstring <optional>
The lowercased full path in the user's Dropbox. This always starts with a slash. This field will be null if the file or folder is not mounted. path_displaystring <optional>
The cased path to be used for display purposes only. In rare instances the casing will not correctly match the user's filesystem, but this behavior will match the path provided in the Core API v1, and at least the last path component will have the correct casing. Changes to only the casing of paths won't be returned by list_folder/continue. This field will be null if the file or folder is not mounted. parent_shared_folder_idstring <optional>
Please use FileSharingInfo.parent_shared_folder_id or FolderSharingInfo.parent_shared_folder_id instead. preview_urlstring <optional>
The preview URL of the file. -
FilesDeleteError
-
Type:
- Object
Properties:
Name Type Argument Description path_lookupFilesLookupError <optional>
Available if .tag is path_lookup. path_writeFilesWriteError <optional>
Available if .tag is path_write. .tag'path_lookup' | 'path_write' | 'too_many_write_operations' | 'too_many_files' | 'other' Tag identifying the union variant. -
FilesDeleteResult
-
Type:
- Object
Properties:
Name Type Description metadataFilesFileMetadata | FilesFolderMetadata | FilesDeletedMetadata Metadata of the deleted object. -
FilesDimensions
-
Dimensions for a photo or video.
Type:
- Object
Properties:
Name Type Description heightnumber Height of the photo/video. widthnumber Width of the photo/video. -
FilesDownloadArg
-
Type:
- Object
Properties:
Name Type Argument Description pathstring The path of the file to download. revstring <optional>
Please specify revision in path instead. -
FilesDownloadError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'unsupported_file' | 'other' Tag identifying the union variant. -
FilesDownloadZipArg
-
Type:
- Object
Properties:
Name Type Description pathstring The path of the folder to download. -
FilesDownloadZipError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'too_large' | 'too_many_files' | 'other' Tag identifying the union variant. -
FilesDownloadZipResult
-
Type:
- Object
Properties:
Name Type Description metadataFilesFolderMetadata -
FilesExportArg
-
Type:
- Object
Properties:
Name Type Argument Description pathstring The path of the file to be exported. export_formatstring <optional>
The file format to which the file should be exported. This must be one of the formats listed in the file's export_options returned by get_metadata. If none is specified, the default format (specified in export_as in file metadata) will be used. -
FilesExportError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'non_exportable' | 'invalid_export_format' | 'retry_error' | 'other' Tag identifying the union variant. -
FilesExportInfo
-
Export information for a file.
Type:
- Object
Properties:
Name Type Argument Description export_asstring <optional>
Format to which the file can be exported to. export_optionsArray.<string> <optional>
Additional formats to which the file can be exported. These values can be specified as the export_format in /files/export. -
FilesExportMetadata
-
Type:
- Object
Properties:
Name Type Argument Description namestring The last component of the path (including extension). This never contains a slash. sizenumber The file size in bytes. export_hashstring <optional>
A hash based on the exported file content. This field can be used to verify data integrity. Similar to content hash. For more information see our Content hash https://www.dropbox.com/developers/reference/content-hash page. paper_revisionnumber <optional>
If the file is a Paper doc, this gives the latest doc revision which can be used in paper/update. -
FilesExportResult
-
Type:
- Object
Properties:
Name Type Description export_metadataFilesExportMetadata Metadata for the exported version of the file. file_metadataFilesFileMetadata Metadata for the original file. -
FilesFileCategory
-
Type:
- Object
Properties:
Name Type Description .tag'image' | 'document' | 'pdf' | 'spreadsheet' | 'presentation' | 'audio' | 'video' | 'folder' | 'paper' | 'others' | 'other' Tag identifying the union variant. -
FilesFileLock
-
Type:
- Object
Properties:
Name Type Description contentFilesFileLockContent The lock description. -
FilesFileLockContent
-
Type:
- Object
Properties:
Name Type Argument Description single_userFilesSingleUserLock <optional>
Available if .tag is single_user. A lock held by a single user. .tag'unlocked' | 'single_user' | 'other' Tag identifying the union variant. -
FilesFileLockMetadata
-
Type:
- Object
Properties:
Name Type Argument Description is_lockholderboolean <optional>
True if caller holds the file lock. lockholder_namestring <optional>
The display name of the lock holder. lockholder_account_idstring <optional>
The account ID of the lock holder if known. createdTimestamp <optional>
The timestamp of the lock was created. -
FilesFileMetadata
-
Type:
- Object
Properties:
Name Type Argument Description .tag'file' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. namestring The last component of the path (including extension). This never contains a slash. idstring A unique identifier for the file. client_modifiedTimestamp For files, this is the modification time set by the desktop client when the file was added to Dropbox. Since this time is not verified (the Dropbox server stores whatever the desktop client sends up), this should only be used for display purposes (such as sorting) and not, for example, to determine if a file has changed or not. server_modifiedTimestamp The last time the file was modified on Dropbox. revstring A unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts. sizenumber The file size in bytes. path_lowerstring <optional>
The lowercased full path in the user's Dropbox. This always starts with a slash. This field will be null if the file or folder is not mounted. path_displaystring <optional>
The cased path to be used for display purposes only. In rare instances the casing will not correctly match the user's filesystem, but this behavior will match the path provided in the Core API v1, and at least the last path component will have the correct casing. Changes to only the casing of paths won't be returned by list_folder/continue. This field will be null if the file or folder is not mounted. parent_shared_folder_idstring <optional>
Please use FileSharingInfo.parent_shared_folder_id or FolderSharingInfo.parent_shared_folder_id instead. preview_urlstring <optional>
The preview URL of the file. media_infoFilesMediaInfo <optional>
Additional information if the file is a photo or video. This field will not be set on entries returned by list_folder, list_folder/continue, or get_thumbnail_batch, starting December 2, 2019. symlink_infoFilesSymlinkInfo <optional>
Set if this file is a symlink. sharing_infoFilesFileSharingInfo <optional>
Set if this file is contained in a shared folder. is_downloadableboolean If true, file can be downloaded directly; else the file must be exported. export_infoFilesExportInfo <optional>
Information about format this file can be exported to. This filed must be set if is_downloadable is set to false. property_groupsArray.<FilePropertiesPropertyGroup> <optional>
Additional information if the file has custom properties with the property template specified. has_explicit_shared_membersboolean <optional>
This flag will only be present if include_has_explicit_shared_members is true in list_folder or get_metadata. If this flag is present, it will be true if this file has any explicit shared members. This is different from sharing_info in that this could be true in the case where a file has explicit members but is not contained within a shared folder. content_hashstring <optional>
A hash of the file content. This field can be used to verify data integrity. For more information see our Content hash https://www.dropbox.com/developers/reference/content-hash page. file_lock_infoFilesFileLockMetadata <optional>
If present, the metadata associated with the file's current lock. -
FilesFileOpsResult
-
Type:
- Object
-
FilesFileSharingInfo
-
Sharing info for a file which is contained by a shared folder.
Type:
- Object
Properties:
Name Type Argument Description read_onlyboolean True if the file or folder is inside a read-only shared folder. parent_shared_folder_idstring ID of shared folder that holds this file. modified_bystring <optional>
The last user who modified the file. This field will be null if the user's account has been deleted. -
FilesFileStatus
-
Type:
- Object
Properties:
Name Type Description .tag'active' | 'deleted' | 'other' Tag identifying the union variant. -
FilesFolderMetadata
-
Type:
- Object
Properties:
Name Type Argument Description .tag'folder' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. namestring The last component of the path (including extension). This never contains a slash. idstring A unique identifier for the folder. path_lowerstring <optional>
The lowercased full path in the user's Dropbox. This always starts with a slash. This field will be null if the file or folder is not mounted. path_displaystring <optional>
The cased path to be used for display purposes only. In rare instances the casing will not correctly match the user's filesystem, but this behavior will match the path provided in the Core API v1, and at least the last path component will have the correct casing. Changes to only the casing of paths won't be returned by list_folder/continue. This field will be null if the file or folder is not mounted. parent_shared_folder_idstring <optional>
Please use FileSharingInfo.parent_shared_folder_id or FolderSharingInfo.parent_shared_folder_id instead. preview_urlstring <optional>
The preview URL of the file. shared_folder_idstring <optional>
Please use sharing_info instead. sharing_infoFilesFolderSharingInfo <optional>
Set if the folder is contained in a shared folder or is a shared folder mount point. property_groupsArray.<FilePropertiesPropertyGroup> <optional>
Additional information if the file has custom properties with the property template specified. Note that only properties associated with user-owned templates, not team-owned templates, can be attached to folders. -
FilesFolderSharingInfo
-
Sharing info for a folder which is contained in a shared folder or is a shared folder mount point.
Type:
- Object
Properties:
Name Type Argument Description read_onlyboolean True if the file or folder is inside a read-only shared folder. parent_shared_folder_idstring <optional>
Set if the folder is contained by a shared folder. shared_folder_idstring <optional>
If this folder is a shared folder mount point, the ID of the shared folder mounted at this location. traverse_onlyboolean Specifies that the folder can only be traversed and the user can only see a limited subset of the contents of this folder because they don't have read access to this folder. They do, however, have access to some sub folder. no_accessboolean Specifies that the folder cannot be accessed by the user. -
FilesGetCopyReferenceArg
-
Type:
- Object
Properties:
Name Type Description pathstring The path to the file or folder you want to get a copy reference to. -
FilesGetCopyReferenceError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'other' Tag identifying the union variant. -
FilesGetCopyReferenceResult
-
Type:
- Object
Properties:
Name Type Description metadataFilesFileMetadata | FilesFolderMetadata | FilesDeletedMetadata Metadata of the file or folder. copy_referencestring A copy reference to the file or folder. expiresTimestamp The expiration date of the copy reference. This value is currently set to be far enough in the future so that expiration is effectively not an issue. -
FilesGetMetadataArg
-
Type:
- Object
Properties:
Name Type Argument Description pathstring The path of a file or folder on Dropbox. include_media_infoboolean If true, FileMetadata.media_info is set for photo and video. include_deletedboolean If true, DeletedMetadata will be returned for deleted file or folder, otherwise LookupError.not_found will be returned. include_has_explicit_shared_membersboolean If true, the results will include a flag for each file indicating whether or not that file has any explicit members. include_property_groupsFilePropertiesTemplateFilterBase <optional>
If set to a valid list of template IDs, FileMetadata.property_groups is set if there exists property data associated with the file and each of the listed templates. -
FilesGetMetadataError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' Tag identifying the union variant. -
FilesGetTagsArg
-
Type:
- Object
Properties:
Name Type Description pathsArray.<Object> Path to the items. -
FilesGetTagsResult
-
Type:
- Object
Properties:
Name Type Description paths_to_tagsArray.<FilesPathToTags> List of paths and their corresponding tags. -
FilesGetTemporaryLinkArg
-
Type:
- Object
Properties:
Name Type Description pathstring The path to the file you want a temporary link to. -
FilesGetTemporaryLinkError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'email_not_verified' | 'unsupported_file' | 'not_allowed' | 'other' Tag identifying the union variant. -
FilesGetTemporaryLinkResult
-
Type:
- Object
Properties:
Name Type Description metadataFilesFileMetadata Metadata of the file. linkstring The temporary link which can be used to stream content the file. -
FilesGetTemporaryUploadLinkArg
-
Type:
- Object
Properties:
Name Type Description commit_infoFilesCommitInfo Contains the path and other optional modifiers for the future upload commit. Equivalent to the parameters provided to upload. durationnumber How long before this link expires, in seconds. Attempting to start an upload with this link longer than this period of time after link creation will result in an error. -
FilesGetTemporaryUploadLinkResult
-
Type:
- Object
Properties:
Name Type Description linkstring The temporary link which can be used to stream a file to a Dropbox location. -
FilesGetThumbnailBatchArg
-
Arguments for get_thumbnail_batch.
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesThumbnailArg> List of files to get thumbnails. -
FilesGetThumbnailBatchError
-
Type:
- Object
Properties:
Name Type Description .tag'too_many_files' | 'other' Tag identifying the union variant. -
FilesGetThumbnailBatchResult
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesGetThumbnailBatchResultEntry> List of files and their thumbnails. -
FilesGetThumbnailBatchResultData
-
Type:
- Object
Properties:
Name Type Description metadataFilesFileMetadata thumbnailstring A string containing the base64-encoded thumbnail data for this file. -
FilesGetThumbnailBatchResultEntry
-
Type:
- Object
Properties:
Name Type Argument Description successFilesGetThumbnailBatchResultData <optional>
Available if .tag is success. failureFilesThumbnailError <optional>
Available if .tag is failure. The result for this file if it was an error. .tag'success' | 'failure' | 'other' Tag identifying the union variant. -
FilesGpsCoordinates
-
GPS coordinates for a photo or video.
Type:
- Object
Properties:
Name Type Description latitudenumber Latitude of the GPS coordinates. longitudenumber Longitude of the GPS coordinates. -
FilesHighlightSpan
-
Type:
- Object
Properties:
Name Type Description highlight_strstring String to be determined whether it should be highlighted or not. is_highlightedboolean The string should be highlighted or not. -
FilesImportFormat
-
The import format of the incoming Paper doc content.
Type:
- Object
Properties:
Name Type Description .tag'html' | 'markdown' | 'plain_text' | 'other' Tag identifying the union variant. -
FilesListFolderArg
-
Type:
- Object
Properties:
Name Type Argument Description pathstring A unique identifier for the file. recursiveboolean If true, the list folder operation will be applied recursively to all subfolders and the response will contain contents of all subfolders. include_media_infoboolean If true, FileMetadata.media_info is set for photo and video. This parameter will no longer have an effect starting December 2, 2019. include_deletedboolean If true, the results will include entries for files and folders that used to exist but were deleted. include_has_explicit_shared_membersboolean If true, the results will include a flag for each file indicating whether or not that file has any explicit members. include_mounted_foldersboolean If true, the results will include entries under mounted folders which includes app folder, shared folder and team folder. limitnumber <optional>
The maximum number of results to return per request. Note: This is an approximate number and there can be slightly more entries returned in some cases. shared_linkFilesSharedLink <optional>
A shared link to list the contents of. If the link is password-protected, the password must be provided. If this field is present, ListFolderArg.path will be relative to root of the shared link. Only non-recursive mode is supported for shared link. include_property_groupsFilePropertiesTemplateFilterBase <optional>
If set to a valid list of template IDs, FileMetadata.property_groups is set if there exists property data associated with the file and each of the listed templates. include_non_downloadable_filesboolean If true, include files that are not downloadable, i.e. Google Docs. -
FilesListFolderContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring The cursor returned by your last call to list_folder or list_folder/continue. -
FilesListFolderContinueError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'reset' | 'other' Tag identifying the union variant. -
FilesListFolderError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. template_errorFilePropertiesTemplateError <optional>
Available if .tag is template_error. .tag'path' | 'template_error' | 'other' Tag identifying the union variant. -
FilesListFolderGetLatestCursorResult
-
Type:
- Object
Properties:
Name Type Description cursorstring Pass the cursor into list_folder/continue to see what's changed in the folder since your previous query. -
FilesListFolderLongpollArg
-
Type:
- Object
Properties:
Name Type Description cursorstring A cursor as returned by list_folder or list_folder/continue. Cursors retrieved by setting ListFolderArg.include_media_info to true are not supported. timeoutnumber A timeout in seconds. The request will block for at most this length of time, plus up to 90 seconds of random jitter added to avoid the thundering herd problem. Care should be taken when using this parameter, as some network infrastructure does not support long timeouts. -
FilesListFolderLongpollError
-
Type:
- Object
Properties:
Name Type Description .tag'reset' | 'other' Tag identifying the union variant. -
FilesListFolderLongpollResult
-
Type:
- Object
Properties:
Name Type Argument Description changesboolean Indicates whether new changes are available. If true, call list_folder/continue to retrieve the changes. backoffnumber <optional>
If present, backoff for at least this many seconds before calling list_folder/longpoll again. -
FilesListFolderResult
-
Type:
- Object
Properties:
Name Type Description entriesArray.<(FilesFileMetadata|FilesFolderMetadata|FilesDeletedMetadata)> The files and (direct) subfolders in the folder. cursorstring Pass the cursor into list_folder/continue to see what's changed in the folder since your previous query. has_moreboolean If true, then there are more entries available. Pass the cursor to list_folder/continue to retrieve the rest. -
FilesListRevisionsArg
-
Type:
- Object
Properties:
Name Type Description pathstring The path to the file you want to see the revisions of. modeFilesListRevisionsMode Determines the behavior of the API in listing the revisions for a given file path or id. limitnumber The maximum number of revision entries returned. -
FilesListRevisionsError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'other' Tag identifying the union variant. -
FilesListRevisionsMode
-
Type:
- Object
Properties:
Name Type Description .tag'path' | 'id' | 'other' Tag identifying the union variant. -
FilesListRevisionsResult
-
Type:
- Object
Properties:
Name Type Argument Description is_deletedboolean If the file identified by the latest revision in the response is either deleted or moved. entriesArray.<FilesFileMetadata> The revisions for the file. Only revisions that are not deleted will show up here. server_deletedTimestamp <optional>
The time of deletion if the file was deleted. -
FilesLockConflictError
-
Type:
- Object
Properties:
Name Type Description lockFilesFileLock The lock that caused the conflict. -
FilesLockFileArg
-
Type:
- Object
Properties:
Name Type Description pathstring Path in the user's Dropbox to a file. -
FilesLockFileBatchArg
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesLockFileArg> List of 'entries'. Each 'entry' contains a path of the file which will be locked or queried. Duplicate path arguments in the batch are considered only once. -
FilesLockFileBatchResult
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesLockFileResultEntry> Each Entry in the 'entries' will have '.tag' with the operation status (e.g. success), the metadata for the file and the lock state after the operation. -
FilesLockFileError
-
Type:
- Object
Properties:
Name Type Argument Description path_lookupFilesLookupError <optional>
Available if .tag is path_lookup. Could not find the specified resource. lock_conflictFilesLockConflictError <optional>
Available if .tag is lock_conflict. The user action conflicts with an existing lock on the file. .tag'path_lookup' | 'too_many_write_operations' | 'too_many_files' | 'no_write_permission' | 'cannot_be_locked' | 'file_not_shared' | 'lock_conflict' | 'internal_error' | 'other' Tag identifying the union variant. -
FilesLockFileResult
-
Type:
- Object
Properties:
Name Type Description metadataFilesFileMetadata | FilesFolderMetadata | FilesDeletedMetadata Metadata of the file. lockFilesFileLock The file lock state after the operation. -
FilesLockFileResultEntry
-
Type:
- Object
Properties:
Name Type Argument Description successFilesLockFileResult <optional>
Available if .tag is success. failureFilesLockFileError <optional>
Available if .tag is failure. .tag'success' | 'failure' Tag identifying the union variant. -
FilesLookupError
-
Type:
- Object
Properties:
Name Type Argument Description malformed_pathstring <optional>
Available if .tag is malformed_path. The given path does not satisfy the required path format. Please refer to the :link:`Path formats documentation https://www.dropbox.com/developers/documentation/http/documentation#path-formats` for more information. .tag'malformed_path' | 'not_found' | 'not_file' | 'not_folder' | 'restricted_content' | 'unsupported_content_type' | 'locked' | 'other' Tag identifying the union variant. -
FilesMediaInfo
-
Type:
- Object
Properties:
Name Type Argument Description metadataFilesPhotoMetadata | FilesVideoMetadata <optional>
Available if .tag is metadata. The metadata for the photo/video. .tag'pending' | 'metadata' Tag identifying the union variant. -
FilesMediaMetadata
-
Metadata for a photo or video.
Type:
- Object
Properties:
Name Type Argument Description .tag"photo" | "video" Tag identifying the subtype variant. dimensionsFilesDimensions <optional>
Dimension of the photo/video. locationFilesGpsCoordinates <optional>
The GPS coordinate of the photo/video. time_takenTimestamp <optional>
The timestamp when the photo/video is taken. -
FilesMetadata
-
Metadata for a file or folder.
Type:
- Object
Properties:
Name Type Argument Description .tag"file" | "folder" | "deleted" Tag identifying the subtype variant. namestring The last component of the path (including extension). This never contains a slash. path_lowerstring <optional>
The lowercased full path in the user's Dropbox. This always starts with a slash. This field will be null if the file or folder is not mounted. path_displaystring <optional>
The cased path to be used for display purposes only. In rare instances the casing will not correctly match the user's filesystem, but this behavior will match the path provided in the Core API v1, and at least the last path component will have the correct casing. Changes to only the casing of paths won't be returned by list_folder/continue. This field will be null if the file or folder is not mounted. parent_shared_folder_idstring <optional>
Please use FileSharingInfo.parent_shared_folder_id or FolderSharingInfo.parent_shared_folder_id instead. preview_urlstring <optional>
The preview URL of the file. -
FilesMetadataV2
-
Metadata for a file, folder or other resource types.
Type:
- Object
Properties:
Name Type Argument Description metadataFilesFileMetadata | FilesFolderMetadata | FilesDeletedMetadata <optional>
Available if .tag is metadata. .tag'metadata' | 'other' Tag identifying the union variant. -
FilesMinimalFileLinkMetadata
-
Type:
- Object
Properties:
Name Type Argument Description urlstring URL of the shared link. revstring A unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts. idstring <optional>
Unique identifier for the linked file. pathstring <optional>
Full path in the user's Dropbox. This always starts with a slash. This field will only be present only if the linked file is in the authenticated user's Dropbox. -
FilesMoveBatchArg
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesRelocationPath> List of entries to be moved or copied. Each entry is RelocationPath. autorenameboolean If there's a conflict with any file, have the Dropbox server try to autorename that file to avoid the conflict. allow_ownership_transferboolean Allow moves by owner even if it would result in an ownership transfer for the content being moved. This does not apply to copies. -
FilesMoveIntoFamilyError
-
Type:
- Object
Properties:
Name Type Description .tag'is_shared_folder' | 'other' Tag identifying the union variant. -
FilesMoveIntoVaultError
-
Type:
- Object
Properties:
Name Type Description .tag'is_shared_folder' | 'other' Tag identifying the union variant. -
FilesPaperContentError
-
Type:
- Object
Properties:
Name Type Description .tag'insufficient_permissions' | 'content_malformed' | 'doc_length_exceeded' | 'image_size_exceeded' | 'other' Tag identifying the union variant. -
FilesPaperCreateArg
-
Type:
- Object
Properties:
Name Type Argument Description contentsObject <optional>
The file contents to be uploaded. pathstring The fully qualified path to the location in the user's Dropbox where the Paper Doc should be created. This should include the document's title and end with .paper. import_formatFilesImportFormat The format of the provided data. -
FilesPaperCreateError
-
Type:
- Object
Properties:
Name Type Description .tag'insufficient_permissions' | 'content_malformed' | 'doc_length_exceeded' | 'image_size_exceeded' | 'other' | 'invalid_path' | 'email_unverified' | 'invalid_file_extension' | 'paper_disabled' Tag identifying the union variant. -
FilesPaperCreateResult
-
Type:
- Object
Properties:
Name Type Description urlstring URL to open the Paper Doc. result_pathstring The fully qualified path the Paper Doc was actually created at. file_idstring The id to use in Dropbox APIs when referencing the Paper Doc. paper_revisionnumber The current doc revision. -
FilesPaperDocUpdatePolicy
-
Type:
- Object
Properties:
Name Type Description .tag'update' | 'overwrite' | 'prepend' | 'append' | 'other' Tag identifying the union variant. -
FilesPaperUpdateArg
-
Type:
- Object
Properties:
Name Type Argument Description contentsObject <optional>
The file contents to be uploaded. pathstring Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be returned. import_formatFilesImportFormat The format of the provided data. doc_update_policyFilesPaperDocUpdatePolicy How the provided content should be applied to the doc. paper_revisionnumber <optional>
The latest doc revision. Required when doc_update_policy is update. This value must match the current revision of the doc or error revision_mismatch will be returned. -
FilesPaperUpdateError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'insufficient_permissions' | 'content_malformed' | 'doc_length_exceeded' | 'image_size_exceeded' | 'other' | 'path' | 'revision_mismatch' | 'doc_archived' | 'doc_deleted' Tag identifying the union variant. -
FilesPaperUpdateResult
-
Type:
- Object
Properties:
Name Type Description paper_revisionnumber The current doc revision. -
FilesPathOrLink
-
Type:
- Object
Properties:
Name Type Argument Description pathstring <optional>
Available if .tag is path. linkFilesSharedLinkFileInfo <optional>
Available if .tag is link. .tag'path' | 'link' | 'other' Tag identifying the union variant. -
FilesPathToTags
-
Type:
- Object
Properties:
Name Type Description pathstring Path of the item. tagsArray.<FilesTag> Tags assigned to this item. -
FilesPhotoMetadata
-
Metadata for a photo.
Type:
- Object
Properties:
Name Type Argument Description .tag'photo' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. dimensionsFilesDimensions <optional>
Dimension of the photo/video. locationFilesGpsCoordinates <optional>
The GPS coordinate of the photo/video. time_takenTimestamp <optional>
The timestamp when the photo/video is taken. -
FilesPreviewArg
-
Type:
- Object
Properties:
Name Type Argument Description pathstring The path of the file to preview. revstring <optional>
Please specify revision in path instead. -
FilesPreviewError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. An error occurs when downloading metadata for the file. .tag'path' | 'in_progress' | 'unsupported_extension' | 'unsupported_content' Tag identifying the union variant. -
FilesPreviewResult
-
Type:
- Object
Properties:
Name Type Argument Description file_metadataFilesFileMetadata <optional>
Metadata corresponding to the file received as an argument. Will be populated if the endpoint is called with a path (ReadPath). link_metadataFilesMinimalFileLinkMetadata <optional>
Minimal metadata corresponding to the file received as an argument. Will be populated if the endpoint is called using a shared link (SharedLinkFileInfo). -
FilesRelocationArg
-
Type:
- Object
Properties:
Name Type Description from_pathstring Path in the user's Dropbox to be copied or moved. to_pathstring Path in the user's Dropbox that is the destination. allow_shared_folderboolean This flag has no effect. autorenameboolean If there's a conflict, have the Dropbox server try to autorename the file to avoid the conflict. allow_ownership_transferboolean Allow moves by owner even if it would result in an ownership transfer for the content being moved. This does not apply to copies. -
FilesRelocationBatchArg
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesRelocationPath> List of entries to be moved or copied. Each entry is RelocationPath. autorenameboolean If there's a conflict with any file, have the Dropbox server try to autorename that file to avoid the conflict. allow_shared_folderboolean This flag has no effect. allow_ownership_transferboolean Allow moves by owner even if it would result in an ownership transfer for the content being moved. This does not apply to copies. -
FilesRelocationBatchArgBase
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesRelocationPath> List of entries to be moved or copied. Each entry is RelocationPath. autorenameboolean If there's a conflict with any file, have the Dropbox server try to autorename that file to avoid the conflict. -
FilesRelocationBatchError
-
Type:
- Object
Properties:
Name Type Argument Description from_lookupFilesLookupError <optional>
Available if .tag is from_lookup. from_writeFilesWriteError <optional>
Available if .tag is from_write. toFilesWriteError <optional>
Available if .tag is to. cant_move_into_vaultFilesMoveIntoVaultError <optional>
Available if .tag is cant_move_into_vault. Some content cannot be moved into Vault under certain circumstances, see detailed error. cant_move_into_familyFilesMoveIntoFamilyError <optional>
Available if .tag is cant_move_into_family. Some content cannot be moved into the Family Room folder under certain circumstances, see detailed error. .tag'from_lookup' | 'from_write' | 'to' | 'cant_copy_shared_folder' | 'cant_nest_shared_folder' | 'cant_move_folder_into_itself' | 'too_many_files' | 'duplicated_or_nested_paths' | 'cant_transfer_ownership' | 'insufficient_quota' | 'internal_error' | 'cant_move_shared_folder' | 'cant_move_into_vault' | 'cant_move_into_family' | 'other' | 'too_many_write_operations' Tag identifying the union variant. -
FilesRelocationBatchErrorEntry
-
Type:
- Object
Properties:
Name Type Argument Description relocation_errorFilesRelocationError <optional>
Available if .tag is relocation_error. User errors that retry won't help. .tag'relocation_error' | 'internal_error' | 'too_many_write_operations' | 'other' Tag identifying the union variant. -
FilesRelocationBatchJobStatus
-
Type:
- Object
Properties:
Name Type Argument Description completeFilesRelocationBatchResult <optional>
Available if .tag is complete. The copy or move batch job has finished. failedFilesRelocationBatchError <optional>
Available if .tag is failed. The copy or move batch job has failed with exception. .tag'in_progress' | 'complete' | 'failed' Tag identifying the union variant. -
FilesRelocationBatchLaunch
-
Result returned by copy_batch or move_batch that may either launch an asynchronous job or complete synchronously.
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. completeFilesRelocationBatchResult <optional>
Available if .tag is complete. .tag'async_job_id' | 'complete' | 'other' Tag identifying the union variant. -
FilesRelocationBatchResult
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesRelocationBatchResultData> -
FilesRelocationBatchResultData
-
Type:
- Object
Properties:
Name Type Description metadataFilesFileMetadata | FilesFolderMetadata | FilesDeletedMetadata Metadata of the relocated object. -
FilesRelocationBatchResultEntry
-
Type:
- Object
Properties:
Name Type Argument Description successFilesFileMetadata | FilesFolderMetadata | FilesDeletedMetadata <optional>
Available if .tag is success. failureFilesRelocationBatchErrorEntry <optional>
Available if .tag is failure. .tag'success' | 'failure' | 'other' Tag identifying the union variant. -
FilesRelocationBatchV2JobStatus
-
Result returned by copy_batch/check:2 or move_batch/check:2 that may either be in progress or completed with result for each entry.
Type:
- Object
Properties:
Name Type Argument Description completeFilesRelocationBatchV2Result <optional>
Available if .tag is complete. The copy or move batch job has finished. .tag'in_progress' | 'complete' Tag identifying the union variant. -
FilesRelocationBatchV2Launch
-
Result returned by copy_batch:2 or move_batch:2 that may either launch an asynchronous job or complete synchronously.
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. completeFilesRelocationBatchV2Result <optional>
Available if .tag is complete. .tag'async_job_id' | 'complete' Tag identifying the union variant. -
FilesRelocationBatchV2Result
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesRelocationBatchResultEntry> Each entry in CopyBatchArg.entries or MoveBatchArg.entries will appear at the same position inside RelocationBatchV2Result.entries. -
FilesRelocationError
-
Type:
- Object
Properties:
Name Type Argument Description from_lookupFilesLookupError <optional>
Available if .tag is from_lookup. from_writeFilesWriteError <optional>
Available if .tag is from_write. toFilesWriteError <optional>
Available if .tag is to. cant_move_into_vaultFilesMoveIntoVaultError <optional>
Available if .tag is cant_move_into_vault. Some content cannot be moved into Vault under certain circumstances, see detailed error. cant_move_into_familyFilesMoveIntoFamilyError <optional>
Available if .tag is cant_move_into_family. Some content cannot be moved into the Family Room folder under certain circumstances, see detailed error. .tag'from_lookup' | 'from_write' | 'to' | 'cant_copy_shared_folder' | 'cant_nest_shared_folder' | 'cant_move_folder_into_itself' | 'too_many_files' | 'duplicated_or_nested_paths' | 'cant_transfer_ownership' | 'insufficient_quota' | 'internal_error' | 'cant_move_shared_folder' | 'cant_move_into_vault' | 'cant_move_into_family' | 'other' Tag identifying the union variant. -
FilesRelocationPath
-
Type:
- Object
Properties:
Name Type Description from_pathstring Path in the user's Dropbox to be copied or moved. to_pathstring Path in the user's Dropbox that is the destination. -
FilesRelocationResult
-
Type:
- Object
Properties:
Name Type Description metadataFilesFileMetadata | FilesFolderMetadata | FilesDeletedMetadata Metadata of the relocated object. -
FilesRemoveTagArg
-
Type:
- Object
Properties:
Name Type Description pathstring Path to the item to tag. tag_textstring The tag to remove. Will be automatically converted to lowercase letters. -
FilesRemoveTagError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'other' | 'tag_not_present' Tag identifying the union variant. -
FilesRestoreArg
-
Type:
- Object
Properties:
Name Type Description pathstring The path to save the restored file. revstring The revision to restore. -
FilesRestoreError
-
Type:
- Object
Properties:
Name Type Argument Description path_lookupFilesLookupError <optional>
Available if .tag is path_lookup. An error occurs when downloading metadata for the file. path_writeFilesWriteError <optional>
Available if .tag is path_write. An error occurs when trying to restore the file to that path. .tag'path_lookup' | 'path_write' | 'invalid_revision' | 'in_progress' | 'other' Tag identifying the union variant. -
FilesSaveCopyReferenceArg
-
Type:
- Object
Properties:
Name Type Description copy_referencestring A copy reference returned by copy_reference/get. pathstring Path in the user's Dropbox that is the destination. -
FilesSaveCopyReferenceError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesWriteError <optional>
Available if .tag is path. .tag'path' | 'invalid_copy_reference' | 'no_permission' | 'not_found' | 'too_many_files' | 'other' Tag identifying the union variant. -
FilesSaveCopyReferenceResult
-
Type:
- Object
Properties:
Name Type Description metadataFilesFileMetadata | FilesFolderMetadata | FilesDeletedMetadata The metadata of the saved file or folder in the user's Dropbox. -
FilesSaveUrlArg
-
Type:
- Object
Properties:
Name Type Description pathstring The path in Dropbox where the URL will be saved to. urlstring The URL to be saved. -
FilesSaveUrlError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesWriteError <optional>
Available if .tag is path. .tag'path' | 'download_failed' | 'invalid_url' | 'not_found' | 'other' Tag identifying the union variant. -
FilesSaveUrlJobStatus
-
Type:
- Object
Properties:
Name Type Argument Description completeFilesFileMetadata <optional>
Available if .tag is complete. Metadata of the file where the URL is saved to. failedFilesSaveUrlError <optional>
Available if .tag is failed. .tag'in_progress' | 'complete' | 'failed' Tag identifying the union variant. -
FilesSaveUrlResult
-
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. completeFilesFileMetadata <optional>
Available if .tag is complete. Metadata of the file where the URL is saved to. .tag'async_job_id' | 'complete' Tag identifying the union variant. -
FilesSearchArg
-
Type:
- Object
Properties:
Name Type Description pathstring The path in the user's Dropbox to search. Should probably be a folder. querystring The string to search for. Query string may be rewritten to improve relevance of results. The string is split on spaces into multiple tokens. For file name searching, the last token is used for prefix matching (i.e. "bat c" matches "bat cave" but not "batman car"). startnumber The starting index within the search results (used for paging). max_resultsnumber The maximum number of search results to return. modeFilesSearchMode The search mode (filename, filename_and_content, or deleted_filename). Note that searching file content is only available for Dropbox Business accounts. -
FilesSearchError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. invalid_argumentstring <optional>
Available if .tag is invalid_argument. .tag'path' | 'invalid_argument' | 'internal_error' | 'other' Tag identifying the union variant. -
FilesSearchMatch
-
Type:
- Object
Properties:
Name Type Description match_typeFilesSearchMatchType The type of the match. metadataFilesFileMetadata | FilesFolderMetadata | FilesDeletedMetadata The metadata for the matched file or folder. -
FilesSearchMatchFieldOptions
-
Type:
- Object
Properties:
Name Type Description include_highlightsboolean Whether to include highlight span from file title. -
FilesSearchMatchType
-
Indicates what type of match was found for a given item.
Type:
- Object
Properties:
Name Type Description .tag'filename' | 'content' | 'both' Tag identifying the union variant. -
FilesSearchMatchTypeV2
-
Indicates what type of match was found for a given item.
Type:
- Object
Properties:
Name Type Description .tag'filename' | 'file_content' | 'filename_and_content' | 'image_content' | 'other' Tag identifying the union variant. -
FilesSearchMatchV2
-
Type:
- Object
Properties:
Name Type Argument Description metadataFilesMetadataV2 The metadata for the matched file or folder. match_typeFilesSearchMatchTypeV2 <optional>
The type of the match. highlight_spansArray.<FilesHighlightSpan> <optional>
The list of HighlightSpan determines which parts of the file title should be highlighted. -
FilesSearchMode
-
Type:
- Object
Properties:
Name Type Description .tag'filename' | 'filename_and_content' | 'deleted_filename' Tag identifying the union variant. -
FilesSearchOptions
-
Type:
- Object
Properties:
Name Type Argument Description pathstring <optional>
Scopes the search to a path in the user's Dropbox. Searches the entire Dropbox if not specified. max_resultsnumber The maximum number of search results to return. order_byFilesSearchOrderBy <optional>
Specified property of the order of search results. By default, results are sorted by relevance. file_statusFilesFileStatus Restricts search to the given file status. filename_onlyboolean Restricts search to only match on filenames. file_extensionsArray.<string> <optional>
Restricts search to only the extensions specified. Only supported for active file search. file_categoriesArray.<FilesFileCategory> <optional>
Restricts search to only the file categories specified. Only supported for active file search. account_idstring <optional>
Restricts results to the given account id. -
FilesSearchOrderBy
-
Type:
- Object
Properties:
Name Type Description .tag'relevance' | 'last_modified_time' | 'other' Tag identifying the union variant. -
FilesSearchResult
-
Type:
- Object
Properties:
Name Type Description matchesArray.<FilesSearchMatch> A list (possibly empty) of matches for the query. moreboolean Used for paging. If true, indicates there is another page of results available that can be fetched by calling search again. startnumber Used for paging. Value to set the start argument to when calling search to fetch the next page of results. -
FilesSearchV2Arg
-
Type:
- Object
Properties:
Name Type Argument Description querystring The string to search for. May match across multiple fields based on the request arguments. optionsFilesSearchOptions <optional>
Options for more targeted search results. match_field_optionsFilesSearchMatchFieldOptions <optional>
Options for search results match fields. include_highlightsboolean <optional>
Deprecated and moved this option to SearchMatchFieldOptions. -
FilesSearchV2ContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring The cursor returned by your last call to search:2. Used to fetch the next page of results. -
FilesSearchV2Result
-
Type:
- Object
Properties:
Name Type Argument Description matchesArray.<FilesSearchMatchV2> A list (possibly empty) of matches for the query. has_moreboolean Used for paging. If true, indicates there is another page of results available that can be fetched by calling search/continue:2 with the cursor. cursorstring <optional>
Pass the cursor into search/continue:2 to fetch the next page of results. -
Type:
- Object
Properties:
Name Type Argument Description urlstring Shared link url. passwordstring <optional>
Password for the shared link. -
Type:
- Object
Properties:
Name Type Argument Description urlstring The shared link corresponding to either a file or shared link to a folder. If it is for a folder shared link, we use the path param to determine for which file in the folder the view is for. pathstring <optional>
The path corresponding to a file in a shared link to a folder. Required for shared links to folders. passwordstring <optional>
Password for the shared link. Required for password-protected shared links to files unless it can be read from a cookie. -
FilesSharingInfo
-
Sharing info for a file or folder.
Type:
- Object
Properties:
Name Type Description read_onlyboolean True if the file or folder is inside a read-only shared folder. -
FilesSingleUserLock
-
Type:
- Object
Properties:
Name Type Argument Description createdTimestamp The time the lock was created. lock_holder_account_idstring The account ID of the lock holder if known. lock_holder_team_idstring <optional>
The id of the team of the account holder if it exists. -
FilesSymlinkInfo
-
Type:
- Object
Properties:
Name Type Description targetstring The target this symlink points to. -
FilesSyncSetting
-
Type:
- Object
Properties:
Name Type Description .tag'default' | 'not_synced' | 'not_synced_inactive' | 'other' Tag identifying the union variant. -
FilesSyncSettingArg
-
Type:
- Object
Properties:
Name Type Description .tag'default' | 'not_synced' | 'other' Tag identifying the union variant. -
FilesSyncSettingsError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'unsupported_combination' | 'unsupported_configuration' | 'other' Tag identifying the union variant. -
FilesTag
-
Tag that can be added in multiple ways.
Type:
- Object
Properties:
Name Type Argument Description user_generated_tagFilesUserGeneratedTag <optional>
Available if .tag is user_generated_tag. Tag generated by the user. .tag'user_generated_tag' | 'other' Tag identifying the union variant. -
FilesThumbnailArg
-
Type:
- Object
Properties:
Name Type Description pathstring The path to the image file you want to thumbnail. formatFilesThumbnailFormat The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be preferred, while png is better for screenshots and digital arts. sizeFilesThumbnailSize The size for the thumbnail image. modeFilesThumbnailMode How to resize and crop the image to achieve the desired size. -
FilesThumbnailError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. An error occurs when downloading metadata for the image. .tag'path' | 'unsupported_extension' | 'unsupported_image' | 'conversion_error' Tag identifying the union variant. -
FilesThumbnailFormat
-
Type:
- Object
Properties:
Name Type Description .tag'jpeg' | 'png' Tag identifying the union variant. -
FilesThumbnailMode
-
Type:
- Object
Properties:
Name Type Description .tag'strict' | 'bestfit' | 'fitone_bestfit' Tag identifying the union variant. -
FilesThumbnailSize
-
Type:
- Object
Properties:
Name Type Description .tag'w32h32' | 'w64h64' | 'w128h128' | 'w256h256' | 'w480h320' | 'w640h480' | 'w960h640' | 'w1024h768' | 'w2048h1536' Tag identifying the union variant. -
FilesThumbnailV2Arg
-
Type:
- Object
Properties:
Name Type Description resourceFilesPathOrLink Information specifying which file to preview. This could be a path to a file, a shared link pointing to a file, or a shared link pointing to a folder, with a relative path. formatFilesThumbnailFormat The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be preferred, while png is better for screenshots and digital arts. sizeFilesThumbnailSize The size for the thumbnail image. modeFilesThumbnailMode How to resize and crop the image to achieve the desired size. -
FilesThumbnailV2Error
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. An error occurred when downloading metadata for the image. .tag'path' | 'unsupported_extension' | 'unsupported_image' | 'conversion_error' | 'access_denied' | 'not_found' | 'other' Tag identifying the union variant. -
FilesUnlockFileArg
-
Type:
- Object
Properties:
Name Type Description pathstring Path in the user's Dropbox to a file. -
FilesUnlockFileBatchArg
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesUnlockFileArg> List of 'entries'. Each 'entry' contains a path of the file which will be unlocked. Duplicate path arguments in the batch are considered only once. -
FilesUploadArg
-
Type:
- Object
Properties:
Name Type Argument Description contentsObject <optional>
The file contents to be uploaded. pathstring Path in the user's Dropbox to save the file. modeFilesWriteMode Selects what to do if the file already exists. autorenameboolean If there's a conflict, as determined by mode, have the Dropbox server try to autorename the file to avoid conflict. client_modifiedTimestamp <optional>
The value to store as the client_modified timestamp. Dropbox automatically records the time at which the file was written to the Dropbox servers. It can also record an additional timestamp, provided by Dropbox desktop clients, mobile clients, and API apps of when the file was actually created or modified. muteboolean Normally, users are made aware of any file modifications in their Dropbox account via notifications in the client software. If true, this tells the clients that this modification shouldn't result in a user notification. property_groupsArray.<FilePropertiesPropertyGroup> <optional>
List of custom properties to add to file. strict_conflictboolean Be more strict about how each WriteMode detects conflict. For example, always return a conflict error when mode = WriteMode.update and the given "rev" doesn't match the existing file's "rev", even if the existing file has been deleted. This also forces a conflict even when the target path refers to a file with identical contents. content_hashstring <optional>
A hash of the file content uploaded in this call. If provided and the uploaded content does not match this hash, an error will be returned. For more information see our Content hash https://www.dropbox.com/developers/reference/content-hash page. -
FilesUploadError
-
Type:
- Object
Properties:
Name Type Argument Description pathFilesUploadWriteFailed <optional>
Available if .tag is path. Unable to save the uploaded contents to a file. properties_errorFilePropertiesInvalidPropertyGroupError <optional>
Available if .tag is properties_error. The supplied property group is invalid. The file has uploaded without property groups. .tag'path' | 'properties_error' | 'payload_too_large' | 'content_hash_mismatch' | 'other' Tag identifying the union variant. -
FilesUploadSessionAppendArg
-
Type:
- Object
Properties:
Name Type Argument Description contentsObject <optional>
The file contents to be uploaded. cursorFilesUploadSessionCursor Contains the upload session ID and the offset. closeboolean If true, the current session will be closed, at which point you won't be able to call upload_session/append:2 anymore with the current session. content_hashstring <optional>
A hash of the file content uploaded in this call. If provided and the uploaded content does not match this hash, an error will be returned. For more information see our Content hash https://www.dropbox.com/developers/reference/content-hash page. -
FilesUploadSessionAppendError
-
Type:
- Object
Properties:
Name Type Argument Description incorrect_offsetFilesUploadSessionOffsetError <optional>
Available if .tag is incorrect_offset. The specified offset was incorrect. See the value for the correct offset. This error may occur when a previous request was received and processed successfully but the client did not receive the response, e.g. due to a network error. .tag'not_found' | 'incorrect_offset' | 'closed' | 'not_closed' | 'too_large' | 'concurrent_session_invalid_offset' | 'concurrent_session_invalid_data_size' | 'payload_too_large' | 'other' | 'content_hash_mismatch' Tag identifying the union variant. -
FilesUploadSessionCursor
-
Type:
- Object
Properties:
Name Type Argument Description contentsObject <optional>
The file contents to be uploaded. session_idstring The upload session ID (returned by upload_session/start). offsetnumber Offset in bytes at which data should be appended. We use this to make sure upload data isn't lost or duplicated in the event of a network error. -
FilesUploadSessionFinishArg
-
Type:
- Object
Properties:
Name Type Argument Description contentsObject <optional>
The file contents to be uploaded. cursorFilesUploadSessionCursor Contains the upload session ID and the offset. commitFilesCommitInfo Contains the path and other optional modifiers for the commit. content_hashstring <optional>
A hash of the file content uploaded in this call. If provided and the uploaded content does not match this hash, an error will be returned. For more information see our Content hash https://www.dropbox.com/developers/reference/content-hash page. -
FilesUploadSessionFinishBatchArg
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesUploadSessionFinishArg> Commit information for each file in the batch. -
FilesUploadSessionFinishBatchJobStatus
-
Type:
- Object
Properties:
Name Type Argument Description completeFilesUploadSessionFinishBatchResult <optional>
Available if .tag is complete. The :route:`upload_session/finish_batch` has finished. .tag'in_progress' | 'complete' Tag identifying the union variant. -
FilesUploadSessionFinishBatchLaunch
-
Result returned by upload_session/finish_batch that may either launch an asynchronous job or complete synchronously.
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. completeFilesUploadSessionFinishBatchResult <optional>
Available if .tag is complete. .tag'async_job_id' | 'complete' | 'other' Tag identifying the union variant. -
FilesUploadSessionFinishBatchResult
-
Type:
- Object
Properties:
Name Type Description entriesArray.<FilesUploadSessionFinishBatchResultEntry> Each entry in UploadSessionFinishBatchArg.entries will appear at the same position inside UploadSessionFinishBatchResult.entries. -
FilesUploadSessionFinishBatchResultEntry
-
Type:
- Object
Properties:
Name Type Argument Description successFilesFileMetadata <optional>
Available if .tag is success. failureFilesUploadSessionFinishError <optional>
Available if .tag is failure. .tag'success' | 'failure' Tag identifying the union variant. -
FilesUploadSessionFinishError
-
Type:
- Object
Properties:
Name Type Argument Description lookup_failedFilesUploadSessionLookupError <optional>
Available if .tag is lookup_failed. The session arguments are incorrect; the value explains the reason. pathFilesWriteError <optional>
Available if .tag is path. Unable to save the uploaded contents to a file. Data has already been appended to the upload session. Please retry with empty data body and updated offset. properties_errorFilePropertiesInvalidPropertyGroupError <optional>
Available if .tag is properties_error. The supplied property group is invalid. The file has uploaded without property groups. .tag'lookup_failed' | 'path' | 'properties_error' | 'too_many_shared_folder_targets' | 'too_many_write_operations' | 'concurrent_session_data_not_allowed' | 'concurrent_session_not_closed' | 'concurrent_session_missing_data' | 'payload_too_large' | 'content_hash_mismatch' | 'other' Tag identifying the union variant. -
FilesUploadSessionLookupError
-
Type:
- Object
Properties:
Name Type Argument Description incorrect_offsetFilesUploadSessionOffsetError <optional>
Available if .tag is incorrect_offset. The specified offset was incorrect. See the value for the correct offset. This error may occur when a previous request was received and processed successfully but the client did not receive the response, e.g. due to a network error. .tag'not_found' | 'incorrect_offset' | 'closed' | 'not_closed' | 'too_large' | 'concurrent_session_invalid_offset' | 'concurrent_session_invalid_data_size' | 'payload_too_large' | 'other' Tag identifying the union variant. -
FilesUploadSessionOffsetError
-
Type:
- Object
Properties:
Name Type Description correct_offsetnumber The offset up to which data has been collected. -
FilesUploadSessionStartArg
-
Type:
- Object
Properties:
Name Type Argument Description contentsObject <optional>
The file contents to be uploaded. closeboolean If true, the current session will be closed, at which point you won't be able to call upload_session/append:2 anymore with the current session. session_typeFilesUploadSessionType <optional>
Type of upload session you want to start. If not specified, default is UploadSessionType.sequential. content_hashstring <optional>
A hash of the file content uploaded in this call. If provided and the uploaded content does not match this hash, an error will be returned. For more information see our Content hash https://www.dropbox.com/developers/reference/content-hash page. -
FilesUploadSessionStartBatchArg
-
Type:
- Object
Properties:
Name Type Argument Description num_sessionsnumber The number of upload sessions to start. session_typeFilesUploadSessionType <optional>
Type of upload session you want to start. If not specified, default is UploadSessionType.sequential. -
FilesUploadSessionStartBatchResult
-
Type:
- Object
Properties:
Name Type Description session_idsArray.<string> A List of unique identifiers for the upload session. Pass each session_id to upload_session/append:2 and upload_session/finish. -
FilesUploadSessionStartError
-
Type:
- Object
Properties:
Name Type Description .tag'concurrent_session_data_not_allowed' | 'concurrent_session_close_not_allowed' | 'payload_too_large' | 'content_hash_mismatch' | 'other' Tag identifying the union variant. -
FilesUploadSessionStartResult
-
Type:
- Object
Properties:
Name Type Description session_idstring A unique identifier for the upload session. Pass this to upload_session/append:2 and upload_session/finish. -
FilesUploadSessionType
-
Type:
- Object
Properties:
Name Type Description .tag'sequential' | 'concurrent' | 'other' Tag identifying the union variant. -
FilesUploadWriteFailed
-
Type:
- Object
Properties:
Name Type Description reasonFilesWriteError The reason why the file couldn't be saved. upload_session_idstring The upload session ID; data has already been uploaded to the corresponding upload session and this ID may be used to retry the commit with upload_session/finish. -
FilesUserGeneratedTag
-
Type:
- Object
Properties:
Name Type Description tag_textstring -
FilesVideoMetadata
-
Metadata for a video.
Type:
- Object
Properties:
Name Type Argument Description .tag'video' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. dimensionsFilesDimensions <optional>
Dimension of the photo/video. locationFilesGpsCoordinates <optional>
The GPS coordinate of the photo/video. time_takenTimestamp <optional>
The timestamp when the photo/video is taken. durationnumber <optional>
The duration of the video in milliseconds. -
FilesWriteConflictError
-
Type:
- Object
Properties:
Name Type Description .tag'file' | 'folder' | 'file_ancestor' | 'other' Tag identifying the union variant. -
FilesWriteError
-
Type:
- Object
Properties:
Name Type Argument Description malformed_pathstring <optional>
Available if .tag is malformed_path. The given path does not satisfy the required path format. Please refer to the :link:`Path formats documentation https://www.dropbox.com/developers/documentation/http/documentation#path-formats` for more information. conflictFilesWriteConflictError <optional>
Available if .tag is conflict. Couldn't write to the target path because there was something in the way. .tag'malformed_path' | 'conflict' | 'no_write_permission' | 'insufficient_space' | 'disallowed_name' | 'team_folder' | 'operation_suppressed' | 'too_many_write_operations' | 'other' Tag identifying the union variant. -
FilesWriteMode
-
Your intent when writing a file to some path. This is used to determine what constitutes a conflict and what the autorename strategy is. In some situations, the conflict behavior is identical: (a) If the target path doesn't refer to anything, the file is always written; no conflict. (b) If the target path refers to a folder, it's always a conflict. (c) If the target path refers to a file with identical contents, nothing gets written; no conflict. The conflict checking differs in the case where there's a file at the target path with contents different from the contents you're trying to write.
Type:
- Object
Properties:
Name Type Argument Description updatestring <optional>
Available if .tag is update. Overwrite if the given "rev" matches the existing file's "rev". The supplied value should be the latest known "rev" of the file, for example, from :type:`FileMetadata`, from when the file was last downloaded by the app. This will cause the file on the Dropbox servers to be overwritten if the given "rev" matches the existing file's current "rev" on the Dropbox servers. The autorename strategy is to append the string "conflicted copy" to the file name. For example, "document.txt" might become "document (conflicted copy).txt" or "document (Panda's conflicted copy).txt". .tag'add' | 'overwrite' | 'update' Tag identifying the union variant. -
OpenidOpenIdError
-
Type:
- Object
Properties:
Name Type Description .tag'incorrect_openid_scopes' | 'other' Tag identifying the union variant. -
OpenidUserInfoArgs
-
No Parameters
Type:
- Object
-
OpenidUserInfoError
-
Type:
- Object
Properties:
Name Type Argument Description openid_errorOpenidOpenIdError <optional>
Available if .tag is openid_error. .tag'openid_error' | 'other' Tag identifying the union variant. -
OpenidUserInfoResult
-
Type:
- Object
Properties:
Name Type Argument Description family_namestring <optional>
Last name of user. given_namestring <optional>
First name of user. emailstring <optional>
Email address of user. email_verifiedboolean <optional>
If user is email verified. issstring Issuer of token (in this case Dropbox). substring An identifier for the user. This is the Dropbox account_id, a string value such as dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc. -
PaperAddMember
-
Type:
- Object
Properties:
Name Type Description memberSharingMemberSelector User which should be added to the Paper doc. Specify only email address or Dropbox account ID. permission_levelPaperPaperDocPermissionLevel Permission for the user. -
PaperAddPaperDocUser
-
Type:
- Object
Properties:
Name Type Argument Description doc_idstring The Paper doc ID. membersArray.<PaperAddMember> User which should be added to the Paper doc. Specify only email address or Dropbox account ID. custom_messagestring <optional>
A personal message that will be emailed to each successfully added member. quietboolean Clients should set this to true if no email message shall be sent to added users. -
PaperAddPaperDocUserMemberResult
-
Per-member result for docs/users/add.
Type:
- Object
Properties:
Name Type Description memberSharingMemberSelector One of specified input members. resultPaperAddPaperDocUserResult The outcome of the action on this member. -
PaperAddPaperDocUserResult
-
Type:
- Object
Properties:
Name Type Description .tag'success' | 'unknown_error' | 'sharing_outside_team_disabled' | 'daily_limit_reached' | 'user_is_owner' | 'failed_user_data_retrieval' | 'permission_already_granted' | 'other' Tag identifying the union variant. -
PaperCursor
-
Type:
- Object
Properties:
Name Type Argument Description valuestring The actual cursor value. expirationTimestamp <optional>
Expiration time of value. Some cursors might have expiration time assigned. This is a UTC value after which the cursor is no longer valid and the API starts returning an error. If cursor expires a new one needs to be obtained and pagination needs to be restarted. Some cursors might be short-lived some cursors might be long-lived. This really depends on the sorting type and order, e.g.: 1. on one hand, listing docs created by the user, sorted by the created time ascending will have undefinite expiration because the results cannot change while the iteration is happening. This cursor would be suitable for long term polling. 2. on the other hand, listing docs sorted by the last modified time will have a very short expiration as docs do get modified very often and the modified time can be changed while the iteration is happening thus altering the results. -
PaperDocLookupError
-
Type:
- Object
Properties:
Name Type Description .tag'insufficient_permissions' | 'other' | 'doc_not_found' Tag identifying the union variant. -
PaperDocSubscriptionLevel
-
The subscription level of a Paper doc.
Type:
- Object
Properties:
Name Type Description .tag'default' | 'ignore' | 'every' | 'no_email' Tag identifying the union variant. -
PaperExportFormat
-
The desired export format of the Paper doc.
Type:
- Object
Properties:
Name Type Description .tag'html' | 'markdown' | 'other' Tag identifying the union variant. -
PaperFolder
-
Data structure representing a Paper folder.
Type:
- Object
Properties:
Name Type Description idstring Paper folder ID. This ID uniquely identifies the folder. namestring Paper folder name. -
PaperFoldersContainingPaperDoc
-
Metadata about Paper folders containing the specififed Paper doc.
Type:
- Object
Properties:
Name Type Argument Description folder_sharing_policy_typePaperFolderSharingPolicyType <optional>
The sharing policy of the folder containing the Paper doc. foldersArray.<PaperFolder> <optional>
The folder path. If present the first folder is the root folder. -
PaperFolderSharingPolicyType
-
The sharing policy of a Paper folder. The sharing policy of subfolders is inherited from the root folder.
Type:
- Object
Properties:
Name Type Description .tag'team' | 'invite_only' Tag identifying the union variant. -
PaperFolderSubscriptionLevel
-
The subscription level of a Paper folder.
Type:
- Object
Properties:
Name Type Description .tag'none' | 'activity_only' | 'daily_emails' | 'weekly_emails' Tag identifying the union variant. -
PaperImportFormat
-
The import format of the incoming data.
Type:
- Object
Properties:
Name Type Description .tag'html' | 'markdown' | 'plain_text' | 'other' Tag identifying the union variant. -
PaperInviteeInfoWithPermissionLevel
-
Type:
- Object
Properties:
Name Type Description inviteeSharingInviteeInfo Email address invited to the Paper doc. permission_levelPaperPaperDocPermissionLevel Permission level for the invitee. -
PaperListDocsCursorError
-
Type:
- Object
Properties:
Name Type Argument Description cursor_errorPaperPaperApiCursorError <optional>
Available if .tag is cursor_error. .tag'cursor_error' | 'other' Tag identifying the union variant. -
PaperListPaperDocsArgs
-
Type:
- Object
Properties:
Name Type Description filter_byPaperListPaperDocsFilterBy Allows user to specify how the Paper docs should be filtered. sort_byPaperListPaperDocsSortBy Allows user to specify how the Paper docs should be sorted. sort_orderPaperListPaperDocsSortOrder Allows user to specify the sort order of the result. limitnumber Size limit per batch. The maximum number of docs that can be retrieved per batch is 1000. Higher value results in invalid arguments error. -
PaperListPaperDocsContinueArgs
-
Type:
- Object
Properties:
Name Type Description cursorstring The cursor obtained from docs/list or docs/list/continue. Allows for pagination. -
PaperListPaperDocsFilterBy
-
Type:
- Object
Properties:
Name Type Description .tag'docs_accessed' | 'docs_created' | 'other' Tag identifying the union variant. -
PaperListPaperDocsResponse
-
Type:
- Object
Properties:
Name Type Description doc_idsArray.<Object> The list of Paper doc IDs that can be used to access the given Paper docs or supplied to other API methods. The list is sorted in the order specified by the initial call to docs/list. cursorPaperCursor Pass the cursor into docs/list/continue to paginate through all files. The cursor preserves all properties as specified in the original call to docs/list. has_moreboolean Will be set to True if a subsequent call with the provided cursor to docs/list/continue returns immediately with some results. If set to False please allow some delay before making another call to docs/list/continue. -
PaperListPaperDocsSortBy
-
Type:
- Object
Properties:
Name Type Description .tag'accessed' | 'modified' | 'created' | 'other' Tag identifying the union variant. -
PaperListPaperDocsSortOrder
-
Type:
- Object
Properties:
Name Type Description .tag'ascending' | 'descending' | 'other' Tag identifying the union variant. -
PaperListUsersCursorError
-
Type:
- Object
Properties:
Name Type Argument Description cursor_errorPaperPaperApiCursorError <optional>
Available if .tag is cursor_error. .tag'insufficient_permissions' | 'other' | 'doc_not_found' | 'cursor_error' Tag identifying the union variant. -
PaperListUsersOnFolderArgs
-
Type:
- Object
Properties:
Name Type Description doc_idstring The Paper doc ID. limitnumber Size limit per batch. The maximum number of users that can be retrieved per batch is 1000. Higher value results in invalid arguments error. -
PaperListUsersOnFolderContinueArgs
-
Type:
- Object
Properties:
Name Type Description doc_idstring The Paper doc ID. cursorstring The cursor obtained from docs/folder_users/list or docs/folder_users/list/continue. Allows for pagination. -
PaperListUsersOnFolderResponse
-
Type:
- Object
Properties:
Name Type Description inviteesArray.<SharingInviteeInfo> List of email addresses that are invited on the Paper folder. usersArray.<SharingUserInfo> List of users that are invited on the Paper folder. cursorPaperCursor Pass the cursor into docs/folder_users/list/continue to paginate through all users. The cursor preserves all properties as specified in the original call to docs/folder_users/list. has_moreboolean Will be set to True if a subsequent call with the provided cursor to docs/folder_users/list/continue returns immediately with some results. If set to False please allow some delay before making another call to docs/folder_users/list/continue. -
PaperListUsersOnPaperDocArgs
-
Type:
- Object
Properties:
Name Type Description doc_idstring The Paper doc ID. limitnumber Size limit per batch. The maximum number of users that can be retrieved per batch is 1000. Higher value results in invalid arguments error. filter_byPaperUserOnPaperDocFilter Specify this attribute if you want to obtain users that have already accessed the Paper doc. -
PaperListUsersOnPaperDocContinueArgs
-
Type:
- Object
Properties:
Name Type Description doc_idstring The Paper doc ID. cursorstring The cursor obtained from docs/users/list or docs/users/list/continue. Allows for pagination. -
PaperListUsersOnPaperDocResponse
-
Type:
- Object
Properties:
Name Type Description inviteesArray.<PaperInviteeInfoWithPermissionLevel> List of email addresses with their respective permission levels that are invited on the Paper doc. usersArray.<PaperUserInfoWithPermissionLevel> List of users with their respective permission levels that are invited on the Paper folder. doc_ownerSharingUserInfo The Paper doc owner. This field is populated on every single response. cursorPaperCursor Pass the cursor into docs/users/list/continue to paginate through all users. The cursor preserves all properties as specified in the original call to docs/users/list. has_moreboolean Will be set to True if a subsequent call with the provided cursor to docs/users/list/continue returns immediately with some results. If set to False please allow some delay before making another call to docs/users/list/continue. -
PaperPaperApiBaseError
-
Type:
- Object
Properties:
Name Type Description .tag'insufficient_permissions' | 'other' Tag identifying the union variant. -
PaperPaperApiCursorError
-
Type:
- Object
Properties:
Name Type Description .tag'expired_cursor' | 'invalid_cursor' | 'wrong_user_in_cursor' | 'reset' | 'other' Tag identifying the union variant. -
PaperPaperDocCreateArgs
-
Type:
- Object
Properties:
Name Type Argument Description contentsObject <optional>
The file contents to be uploaded. import_formatPaperImportFormat The format of provided data. parent_folder_idstring <optional>
The Paper folder ID where the Paper document should be created. The API user has to have write access to this folder or error is thrown. -
PaperPaperDocCreateError
-
Type:
- Object
Properties:
Name Type Description .tag'insufficient_permissions' | 'other' | 'content_malformed' | 'folder_not_found' | 'doc_length_exceeded' | 'image_size_exceeded' Tag identifying the union variant. -
PaperPaperDocCreateUpdateResult
-
Type:
- Object
Properties:
Name Type Description doc_idstring Doc ID of the newly created doc. revisionnumber The Paper doc revision. Simply an ever increasing number. titlestring The Paper doc title. -
PaperPaperDocExport
-
Type:
- Object
Properties:
Name Type Description doc_idstring The Paper doc ID. export_formatPaperExportFormat -
PaperPaperDocExportResult
-
Type:
- Object
Properties:
Name Type Description ownerstring The Paper doc owner's email address. titlestring The Paper doc title. revisionnumber The Paper doc revision. Simply an ever increasing number. mime_typestring MIME type of the export. This corresponds to ExportFormat specified in the request. -
PaperPaperDocPermissionLevel
-
Type:
- Object
Properties:
Name Type Description .tag'edit' | 'view_and_comment' | 'other' Tag identifying the union variant. -
PaperPaperDocSharingPolicy
-
Type:
- Object
Properties:
Name Type Description doc_idstring The Paper doc ID. sharing_policyPaperSharingPolicy The default sharing policy to be set for the Paper doc. -
PaperPaperDocUpdateArgs
-
Type:
- Object
Properties:
Name Type Argument Description contentsObject <optional>
The file contents to be uploaded. doc_idstring The Paper doc ID. doc_update_policyPaperPaperDocUpdatePolicy The policy used for the current update call. revisionnumber The latest doc revision. This value must match the head revision or an error code will be returned. This is to prevent colliding writes. import_formatPaperImportFormat The format of provided data. -
PaperPaperDocUpdateError
-
Type:
- Object
Properties:
Name Type Description .tag'insufficient_permissions' | 'other' | 'doc_not_found' | 'content_malformed' | 'revision_mismatch' | 'doc_length_exceeded' | 'image_size_exceeded' | 'doc_archived' | 'doc_deleted' Tag identifying the union variant. -
PaperPaperDocUpdatePolicy
-
Type:
- Object
Properties:
Name Type Description .tag'append' | 'prepend' | 'overwrite_all' | 'other' Tag identifying the union variant. -
PaperPaperFolderCreateArg
-
Type:
- Object
Properties:
Name Type Argument Description namestring The name of the new Paper folder. parent_folder_idstring <optional>
The encrypted Paper folder Id where the new Paper folder should be created. The API user has to have write access to this folder or error is thrown. If not supplied, the new folder will be created at top level. is_team_folderboolean <optional>
Whether the folder to be created should be a team folder. This value will be ignored if parent_folder_id is supplied, as the new folder will inherit the type (private or team folder) from its parent. We will by default create a top-level private folder if both parent_folder_id and is_team_folder are not supplied. -
PaperPaperFolderCreateError
-
Type:
- Object
Properties:
Name Type Description .tag'insufficient_permissions' | 'other' | 'folder_not_found' | 'invalid_folder_id' Tag identifying the union variant. -
PaperPaperFolderCreateResult
-
Type:
- Object
Properties:
Name Type Description folder_idstring Folder ID of the newly created folder. -
PaperRefPaperDoc
-
Type:
- Object
Properties:
Name Type Description doc_idstring The Paper doc ID. -
PaperRemovePaperDocUser
-
Type:
- Object
Properties:
Name Type Description doc_idstring The Paper doc ID. memberSharingMemberSelector User which should be removed from the Paper doc. Specify only email address or Dropbox account ID. -
PaperSharingPolicy
-
Sharing policy of Paper doc.
Type:
- Object
Properties:
Name Type Argument Description public_sharing_policyPaperSharingPublicPolicyType <optional>
This value applies to the non-team members. team_sharing_policyPaperSharingTeamPolicyType <optional>
This value applies to the team members only. The value is null for all personal accounts. -
PaperSharingPublicPolicyType
-
Type:
- Object
Properties:
Name Type Description .tag'people_with_link_can_edit' | 'people_with_link_can_view_and_comment' | 'invite_only' | 'disabled' Tag identifying the union variant. -
PaperSharingTeamPolicyType
-
The sharing policy type of the Paper doc.
Type:
- Object
Properties:
Name Type Description .tag'people_with_link_can_edit' | 'people_with_link_can_view_and_comment' | 'invite_only' Tag identifying the union variant. -
PaperUserInfoWithPermissionLevel
-
Type:
- Object
Properties:
Name Type Description userSharingUserInfo User shared on the Paper doc. permission_levelPaperPaperDocPermissionLevel Permission level for the user. -
PaperUserOnPaperDocFilter
-
Type:
- Object
Properties:
Name Type Description .tag'visited' | 'shared' | 'other' Tag identifying the union variant. -
SecondaryEmailsSecondaryEmail
-
Type:
- Object
Properties:
Name Type Description emailstring Secondary email address. is_verifiedboolean Whether or not the secondary email address is verified to be owned by a user. -
SeenStatePlatformType
-
Possible platforms on which a user may view content.
Type:
- Object
Properties:
Name Type Description .tag'web' | 'desktop' | 'mobile_ios' | 'mobile_android' | 'api' | 'unknown' | 'mobile' | 'other' Tag identifying the union variant. -
SharingAccessInheritance
-
Information about the inheritance policy of a shared folder.
Type:
- Object
Properties:
Name Type Description .tag'inherit' | 'no_inherit' | 'other' Tag identifying the union variant. -
SharingAccessLevel
-
Defines the access levels for collaborators.
Type:
- Object
Properties:
Name Type Description .tag'owner' | 'editor' | 'viewer' | 'viewer_no_comment' | 'traverse' | 'other' Tag identifying the union variant. -
SharingAclUpdatePolicy
-
Who can change a shared folder's access control list (ACL). In other words, who can add, remove, or change the privileges of members.
Type:
- Object
Properties:
Name Type Description .tag'owner' | 'editors' | 'other' Tag identifying the union variant. -
SharingAddFileMemberArgs
-
Arguments for add_file_member.
Type:
- Object
Properties:
Name Type Argument Description filestring File to which to add members. membersArray.<SharingMemberSelector> Members to add. Note that even an email address is given, this may result in a user being directly added to the membership if that email is the user's main account email. custom_messagestring <optional>
Message to send to added members in their invitation. quietboolean Whether added members should be notified via email and device notifications of their invitation. access_levelSharingAccessLevel AccessLevel union object, describing what access level we want to give new members. add_message_as_commentboolean If the custom message should be added as a comment on the file. -
SharingAddFileMemberError
-
Errors for add_file_member.
Type:
- Object
Properties:
Name Type Argument Description user_errorSharingSharingUserError <optional>
Available if .tag is user_error. access_errorSharingSharingFileAccessError <optional>
Available if .tag is access_error. .tag'user_error' | 'access_error' | 'rate_limit' | 'invalid_comment' | 'other' Tag identifying the union variant. -
SharingAddFolderMemberArg
-
Type:
- Object
Properties:
Name Type Argument Description shared_folder_idstring The ID for the shared folder. membersArray.<SharingAddMember> The intended list of members to add. Added members will receive invites to join the shared folder. quietboolean Whether added members should be notified via email and device notifications of their invite. custom_messagestring <optional>
Optional message to display to added members in their invitation. -
SharingAddFolderMemberError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharedFolderAccessError <optional>
Available if .tag is access_error. Unable to access shared folder. bad_memberSharingAddMemberSelectorError <optional>
Available if .tag is bad_member. :field:`AddFolderMemberArg.members` contains a bad invitation recipient. too_many_membersnumber <optional>
Available if .tag is too_many_members. The value is the member limit that was reached. too_many_pending_invitesnumber <optional>
Available if .tag is too_many_pending_invites. The value is the pending invite limit that was reached. .tag'access_error' | 'email_unverified' | 'banned_member' | 'bad_member' | 'cant_share_outside_team' | 'too_many_members' | 'too_many_pending_invites' | 'rate_limit' | 'too_many_invitees' | 'insufficient_plan' | 'team_folder' | 'no_permission' | 'invalid_shared_folder' | 'other' Tag identifying the union variant. -
SharingAddMember
-
The member and type of access the member should have when added to a shared folder.
Type:
- Object
Properties:
Name Type Description memberSharingMemberSelector The member to add to the shared folder. access_levelSharingAccessLevel The access level to grant member to the shared folder. AccessLevel.owner is disallowed. -
SharingAddMemberSelectorError
-
Type:
- Object
Properties:
Name Type Argument Description invalid_dropbox_idstring <optional>
Available if .tag is invalid_dropbox_id. The value is the ID that could not be identified. invalid_emailstring <optional>
Available if .tag is invalid_email. The value is the e-email address that is malformed. unverified_dropbox_idstring <optional>
Available if .tag is unverified_dropbox_id. The value is the ID of the Dropbox user with an unverified email address. Invite unverified users by email address instead of by their Dropbox ID. .tag'automatic_group' | 'invalid_dropbox_id' | 'invalid_email' | 'unverified_dropbox_id' | 'group_deleted' | 'group_not_on_team' | 'other' Tag identifying the union variant. -
SharingAlphaResolvedVisibility
-
check documentation for ResolvedVisibility.
Type:
- Object
Properties:
Name Type Description .tag'public' | 'team_only' | 'password' | 'team_and_password' | 'shared_folder_only' | 'no_one' | 'only_you' | 'other' Tag identifying the union variant. -
SharingAudienceExceptionContentInfo
-
Information about the content that has a link audience different than that of this folder.
Type:
- Object
Properties:
Name Type Description namestring The name of the content, which is either a file or a folder. -
SharingAudienceExceptions
-
The total count and truncated list of information of content inside this folder that has a different audience than the link on this folder. This is only returned for folders.
Type:
- Object
Properties:
Name Type Description countnumber exceptionsArray.<SharingAudienceExceptionContentInfo> A truncated list of some of the content that is an exception. The length of this list could be smaller than the count since it is only a sample but will not be empty as long as count is not 0. -
Information about the shared folder that prevents the link audience for this link from being more restrictive.
Type:
- Object
Properties:
Name Type Description shared_folder_idstring The ID of the shared folder. namestring The name of the shared folder. audienceSharingLinkAudience The link audience of the shared folder. -
SharingCollectionLinkMetadata
-
Metadata for a collection-based shared link.
Type:
- Object
Properties:
Name Type Argument Description .tag'collection' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. urlstring URL of the shared link. visibilitySharingVisibility Who can access the link. expiresTimestamp <optional>
Expiration time, if set. By default the link won't expire. -
Type:
- Object
Properties:
Name Type Argument Description pathstring The path to share. short_urlboolean pending_uploadSharingPendingUploadMode <optional>
If it's okay to share a path that does not yet exist, set this to either PendingUploadMode.file or PendingUploadMode.folder to indicate whether to assume it's a file or folder. -
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'other' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Argument Description pathstring The path to be shared by the shared link. settingsSharingSharedLinkSettings <optional>
The requested settings for the newly created shared link. -
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. shared_link_already_existsSharingSharedLinkAlreadyExistsMetadata <optional>
Available if .tag is shared_link_already_exists. The shared link already exists. You can call :route:`list_shared_links` to get the existing link, or use the provided metadata if it is returned. settings_errorSharingSharedLinkSettingsError <optional>
Available if .tag is settings_error. There is an error with the given settings. .tag'path' | 'email_not_verified' | 'shared_link_already_exists' | 'settings_error' | 'access_denied' Tag identifying the union variant. -
The expected metadata of a shared link for a file or folder when a link is first created for the content. Absent if the link already exists.
Type:
- Object
Properties:
Name Type Argument Description audience_optionsArray.<SharingLinkAudience> The audience options that are available for the content. Some audience options may be unavailable. For example, team_only may be unavailable if the content is not owned by a user on a team. The 'default' audience option is always available if the user can modify link settings. current_audienceSharingLinkAudience The current audience of the link. link_permissionsArray.<SharingLinkPermission> A list of permissions for actions you can perform on the link. password_protectedboolean Whether the link is protected by a password. access_levelSharingAccessLevel <optional>
The access level on the link for this file. audience_restricting_shared_folderSharingAudienceRestrictingSharedFolder <optional>
The shared folder that prevents the link audience for this link from being more restrictive. expiryTimestamp <optional>
Whether the link has an expiry set on it. A link with an expiry will have its audience changed to members when the expiry is reached. -
SharingFileAction
-
Sharing actions that may be taken on files.
Type:
- Object
Properties:
Name Type Description .tag'disable_viewer_info' | 'edit_contents' | 'enable_viewer_info' | 'invite_viewer' | 'invite_viewer_no_comment' | 'invite_editor' | 'unshare' | 'relinquish_membership' | 'share_link' | 'create_link' | 'create_view_link' | 'create_edit_link' | 'other' Tag identifying the union variant. -
SharingFileErrorResult
-
Type:
- Object
Properties:
Name Type Argument Description file_not_found_errorstring <optional>
Available if .tag is file_not_found_error. File specified by id was not found. invalid_file_action_errorstring <optional>
Available if .tag is invalid_file_action_error. User does not have permission to take the specified action on the file. permission_denied_errorstring <optional>
Available if .tag is permission_denied_error. User does not have permission to access file specified by file.Id. .tag'file_not_found_error' | 'invalid_file_action_error' | 'permission_denied_error' | 'other' Tag identifying the union variant. -
SharingFileLinkMetadata
-
The metadata of a file shared link.
Type:
- Object
Properties:
Name Type Argument Description .tag'file' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. urlstring URL of the shared link. namestring The linked file name (including extension). This never contains a slash. link_permissionsSharingLinkPermissions The link's access permissions. client_modifiedTimestamp The modification time set by the desktop client when the file was added to Dropbox. Since this time is not verified (the Dropbox server stores whatever the desktop client sends up), this should only be used for display purposes (such as sorting) and not, for example, to determine if a file has changed or not. server_modifiedTimestamp The last time the file was modified on Dropbox. revstring A unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts. sizenumber The file size in bytes. idstring <optional>
A unique identifier for the linked file. expiresTimestamp <optional>
Expiration time, if set. By default the link won't expire. path_lowerstring <optional>
The lowercased full path in the user's Dropbox. This always starts with a slash. This field will only be present only if the linked file is in the authenticated user's dropbox. team_member_infoSharingTeamMemberInfo <optional>
The team membership information of the link's owner. This field will only be present if the link's owner is a team member. content_owner_team_infoUsersTeam <optional>
The team information of the content's owner. This field will only be present if the content's owner is a team member and the content's owner team is different from the link's owner team. -
SharingFileMemberActionError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharingFileAccessError <optional>
Available if .tag is access_error. Specified file was invalid or user does not have access. no_explicit_accessSharingMemberAccessLevelResult <optional>
Available if .tag is no_explicit_access. The action cannot be completed because the target member does not have explicit access to the file. The return value is the access that the member has to the file from a parent folder. .tag'invalid_member' | 'no_permission' | 'access_error' | 'no_explicit_access' | 'other' Tag identifying the union variant. -
SharingFileMemberActionIndividualResult
-
Type:
- Object
Properties:
Name Type Argument Description successSharingAccessLevel <optional>
Available if .tag is success. Part of the response for both add_file_member and remove_file_member_v1 (deprecated). For add_file_member, indicates giving access was successful and at what AccessLevel. For remove_file_member_v1, indicates member was successfully removed from the file. If AccessLevel is given, the member still has access via a parent shared folder. member_errorSharingFileMemberActionError <optional>
Available if .tag is member_error. User was not able to perform this action. .tag'success' | 'member_error' Tag identifying the union variant. -
SharingFileMemberActionResult
-
Per-member result for add_file_member.
Type:
- Object
Properties:
Name Type Argument Description memberSharingMemberSelector One of specified input members. resultSharingFileMemberActionIndividualResult The outcome of the action on this member. sckey_sha1string <optional>
The SHA-1 encrypted shared content key. invitation_signatureArray.<string> <optional>
The sharing sender-recipient invitation signatures for the input member_id. A member_id can be a group and thus have multiple users and multiple invitation signatures. -
SharingFileMemberRemoveActionResult
-
Type:
- Object
Properties:
Name Type Argument Description successSharingMemberAccessLevelResult <optional>
Available if .tag is success. Member was successfully removed from this file. member_errorSharingFileMemberActionError <optional>
Available if .tag is member_error. User was not able to remove this member. .tag'success' | 'member_error' | 'other' Tag identifying the union variant. -
SharingFilePermission
-
Whether the user is allowed to take the sharing action on the file.
Type:
- Object
Properties:
Name Type Argument Description actionSharingFileAction The action that the user may wish to take on the file. allowboolean True if the user is allowed to take the action. reasonSharingPermissionDeniedReason <optional>
The reason why the user is denied the permission. Not present if the action is allowed. -
SharingFolderAction
-
Actions that may be taken on shared folders.
Type:
- Object
Properties:
Name Type Description .tag'change_options' | 'disable_viewer_info' | 'edit_contents' | 'enable_viewer_info' | 'invite_editor' | 'invite_viewer' | 'invite_viewer_no_comment' | 'relinquish_membership' | 'unmount' | 'unshare' | 'leave_a_copy' | 'share_link' | 'create_link' | 'set_access_inheritance' | 'other' Tag identifying the union variant. -
SharingFolderLinkMetadata
-
The metadata of a folder shared link.
Type:
- Object
Properties:
Name Type Argument Description .tag'folder' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. urlstring URL of the shared link. namestring The linked file name (including extension). This never contains a slash. link_permissionsSharingLinkPermissions The link's access permissions. idstring <optional>
A unique identifier for the linked file. expiresTimestamp <optional>
Expiration time, if set. By default the link won't expire. path_lowerstring <optional>
The lowercased full path in the user's Dropbox. This always starts with a slash. This field will only be present only if the linked file is in the authenticated user's dropbox. team_member_infoSharingTeamMemberInfo <optional>
The team membership information of the link's owner. This field will only be present if the link's owner is a team member. content_owner_team_infoUsersTeam <optional>
The team information of the content's owner. This field will only be present if the content's owner is a team member and the content's owner team is different from the link's owner team. -
SharingFolderPermission
-
Whether the user is allowed to take the action on the shared folder.
Type:
- Object
Properties:
Name Type Argument Description actionSharingFolderAction The action that the user may wish to take on the folder. allowboolean True if the user is allowed to take the action. reasonSharingPermissionDeniedReason <optional>
The reason why the user is denied the permission. Not present if the action is allowed, or if no reason is available. -
SharingFolderPolicy
-
A set of policies governing membership and privileges for a shared folder.
Type:
- Object
Properties:
Name Type Argument Description acl_update_policySharingAclUpdatePolicy Who can add and remove members from this shared folder. shared_link_policySharingSharedLinkPolicy Who links can be shared with. member_policySharingMemberPolicy <optional>
Who can be a member of this shared folder, as set on the folder itself. The effective policy may differ from this value if the team-wide policy is more restrictive. Present only if the folder is owned by a team. resolved_member_policySharingMemberPolicy <optional>
Who can be a member of this shared folder, taking into account both the folder and the team-wide policy. This value may differ from that of member_policy if the team-wide policy is more restrictive than the folder policy. Present only if the folder is owned by a team. viewer_info_policySharingViewerInfoPolicy <optional>
Who can enable/disable viewer info for this shared folder. -
SharingGetFileMetadataArg
-
Arguments of get_file_metadata.
Type:
- Object
Properties:
Name Type Argument Description filestring The file to query. actionsArray.<SharingFileAction> <optional>
A list of `FileAction`s corresponding to `FilePermission`s that should appear in the response's SharedFileMetadata.permissions field describing the actions the authenticated user can perform on the file. -
SharingGetFileMetadataBatchArg
-
Arguments of get_file_metadata/batch.
Type:
- Object
Properties:
Name Type Argument Description filesArray.<Object> The files to query. actionsArray.<SharingFileAction> <optional>
A list of `FileAction`s corresponding to `FilePermission`s that should appear in the response's SharedFileMetadata.permissions field describing the actions the authenticated user can perform on the file. -
SharingGetFileMetadataBatchResult
-
Per file results of get_file_metadata/batch.
Type:
- Object
Properties:
Name Type Description filestring This is the input file identifier corresponding to one of GetFileMetadataBatchArg.files. resultSharingGetFileMetadataIndividualResult The result for this particular file. -
SharingGetFileMetadataError
-
Error result for get_file_metadata.
Type:
- Object
Properties:
Name Type Argument Description user_errorSharingSharingUserError <optional>
Available if .tag is user_error. access_errorSharingSharingFileAccessError <optional>
Available if .tag is access_error. .tag'user_error' | 'access_error' | 'other' Tag identifying the union variant. -
SharingGetFileMetadataIndividualResult
-
Type:
- Object
Properties:
Name Type Argument Description metadataSharingSharedFileMetadata <optional>
Available if .tag is metadata. The result for this file if it was successful. access_errorSharingSharingFileAccessError <optional>
Available if .tag is access_error. The result for this file if it was an error. .tag'metadata' | 'access_error' | 'other' Tag identifying the union variant. -
SharingGetMetadataArgs
-
Type:
- Object
Properties:
Name Type Argument Description shared_folder_idstring The ID for the shared folder. actionsArray.<SharingFolderAction> <optional>
A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's SharedFolderMetadata.permissions field describing the actions the authenticated user can perform on the folder. -
Type:
- Object
Properties:
Name Type Description .tag'shared_link_not_found' | 'shared_link_access_denied' | 'unsupported_link_type' | 'other' | 'shared_link_is_directory' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Argument Description urlstring URL of the shared link. pathstring <optional>
If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific file or sub-folder in this folder. A relative path should be used. link_passwordstring <optional>
If the shared link has a password, this parameter can be used. -
Type:
- Object
Properties:
Name Type Argument Description pathstring <optional>
See get_shared_links description. -
Type:
- Object
Properties:
Name Type Argument Description pathstring <optional>
Available if .tag is path. .tag'path' | 'other' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Description linksArray.<(SharingPathLinkMetadata|SharingCollectionLinkMetadata|SharingLinkMetadata)> Shared links applicable to the path argument. -
SharingGroupInfo
-
The information about a group. Groups is a way to manage a list of users who need same access permission to the shared folder.
Type:
- Object
Properties:
Name Type Argument Description group_namestring group_idstring group_management_typeTeamCommonGroupManagementType Who is allowed to manage the group. group_typeTeamCommonGroupType The type of group. is_memberboolean If the current user is a member of the group. is_ownerboolean If the current user is an owner of the group. same_teamboolean If the group is owned by the current user's team. group_external_idstring <optional>
External ID of group. This is an arbitrary ID that an admin can attach to a group. member_countnumber <optional>
The number of members in the group. -
SharingGroupMembershipInfo
-
The information about a group member of the shared content.
Type:
- Object
Properties:
Name Type Argument Description access_typeSharingAccessLevel The access type for this member. It contains inherited access type from parent folder, and acquired access type from this folder. groupSharingGroupInfo The information about the membership group. permissionsArray.<SharingMemberPermission> <optional>
The permissions that requesting user has on this member. The set of permissions corresponds to the MemberActions in the request. initialsstring <optional>
Never set. is_inheritedboolean True if the member has access from a parent folder. -
SharingInsufficientPlan
-
Type:
- Object
Properties:
Name Type Argument Description messagestring A message to tell the user to upgrade in order to support expected action. upsell_urlstring <optional>
A URL to send the user to in order to obtain the account type they need, e.g. upgrading. Absent if there is no action the user can take to upgrade. -
SharingInsufficientQuotaAmounts
-
Type:
- Object
Properties:
Name Type Description space_needednumber The amount of space needed to add the item (the size of the item). space_shortagenumber The amount of extra space needed to add the item. space_leftnumber The amount of space left in the user's Dropbox, less than space_needed. -
SharingInviteeInfo
-
Information about the recipient of a shared content invitation.
Type:
- Object
Properties:
Name Type Argument Description emailstring <optional>
Available if .tag is email. Email address of invited user. .tag'email' | 'other' Tag identifying the union variant. -
SharingInviteeMembershipInfo
-
Information about an invited member of a shared content.
Type:
- Object
Properties:
Name Type Argument Description access_typeSharingAccessLevel The access type for this member. It contains inherited access type from parent folder, and acquired access type from this folder. inviteeSharingInviteeInfo Recipient of the invitation. permissionsArray.<SharingMemberPermission> <optional>
The permissions that requesting user has on this member. The set of permissions corresponds to the MemberActions in the request. initialsstring <optional>
Never set. is_inheritedboolean True if the member has access from a parent folder. userSharingUserInfo <optional>
The user this invitation is tied to, if available. -
SharingJobError
-
Error occurred while performing an asynchronous job from unshare_folder or remove_folder_member.
Type:
- Object
Properties:
Name Type Argument Description unshare_folder_errorSharingUnshareFolderError <optional>
Available if .tag is unshare_folder_error. Error occurred while performing :route:`unshare_folder` action. remove_folder_member_errorSharingRemoveFolderMemberError <optional>
Available if .tag is remove_folder_member_error. Error occurred while performing :route:`remove_folder_member` action. relinquish_folder_membership_errorSharingRelinquishFolderMembershipError <optional>
Available if .tag is relinquish_folder_membership_error. Error occurred while performing :route:`relinquish_folder_membership` action. .tag'unshare_folder_error' | 'remove_folder_member_error' | 'relinquish_folder_membership_error' | 'other' Tag identifying the union variant. -
SharingJobStatus
-
Type:
- Object
Properties:
Name Type Argument Description failedSharingJobError <optional>
Available if .tag is failed. The asynchronous job returned an error. .tag'in_progress' | 'complete' | 'failed' Tag identifying the union variant. -
SharingLinkAccessLevel
-
Type:
- Object
Properties:
Name Type Description .tag'viewer' | 'editor' | 'other' Tag identifying the union variant. -
SharingLinkAction
-
Actions that can be performed on a link.
Type:
- Object
Properties:
Name Type Description .tag'change_access_level' | 'change_audience' | 'remove_expiry' | 'remove_password' | 'set_expiry' | 'set_password' | 'other' Tag identifying the union variant. -
SharingLinkAudience
-
Type:
- Object
Properties:
Name Type Description .tag'public' | 'team' | 'no_one' | 'password' | 'members' | 'other' Tag identifying the union variant. -
SharingLinkAudienceDisallowedReason
-
check documentation for VisibilityPolicyDisallowedReason.
Type:
- Object
Properties:
Name Type Description .tag'delete_and_recreate' | 'restricted_by_shared_folder' | 'restricted_by_team' | 'user_not_on_team' | 'user_account_type' | 'permission_denied' | 'other' Tag identifying the union variant. -
SharingLinkAudienceOption
-
Type:
- Object
Properties:
Name Type Argument Description audienceSharingLinkAudience Specifies who can access the link. allowedboolean Whether the user calling this API can select this audience option. disallowed_reasonSharingLinkAudienceDisallowedReason <optional>
If allowed is false, this will provide the reason that the user is not permitted to set the visibility to this policy. -
SharingLinkExpiry
-
Type:
- Object
Properties:
Name Type Argument Description set_expiryTimestamp <optional>
Available if .tag is set_expiry. Set a new expiry or change an existing expiry. .tag'remove_expiry' | 'set_expiry' | 'other' Tag identifying the union variant. -
SharingLinkMetadata
-
Metadata for a shared link. This can be either a PathLinkMetadata or CollectionLinkMetadata.
Type:
- Object
Properties:
Name Type Argument Description .tag"path" | "collection" Tag identifying the subtype variant. urlstring URL of the shared link. visibilitySharingVisibility Who can access the link. expiresTimestamp <optional>
Expiration time, if set. By default the link won't expire. -
SharingLinkPassword
-
Type:
- Object
Properties:
Name Type Argument Description set_passwordstring <optional>
Available if .tag is set_password. Set a new password or change an existing password. .tag'remove_password' | 'set_password' | 'other' Tag identifying the union variant. -
SharingLinkPermission
-
Permissions for actions that can be performed on a link.
Type:
- Object
Properties:
Name Type Argument Description actionSharingLinkAction allowboolean reasonSharingPermissionDeniedReason <optional>
-
SharingLinkPermissions
-
Type:
- Object
Properties:
Name Type Argument Description can_revokeboolean Whether the caller can revoke the shared link. visibility_policiesArray.<SharingVisibilityPolicy> A list of policies that the user might be able to set for the visibility. can_set_expiryboolean Whether the user can set the expiry settings of the link. This refers to the ability to create a new expiry and modify an existing expiry. can_remove_expiryboolean Whether the user can remove the expiry of the link. allow_downloadboolean Whether the link can be downloaded or not. can_allow_downloadboolean Whether the user can allow downloads via the link. This refers to the ability to remove a no-download restriction on the link. can_disallow_downloadboolean Whether the user can disallow downloads via the link. This refers to the ability to impose a no-download restriction on the link. allow_commentsboolean Whether comments are enabled for the linked file. This takes the team commenting policy into account. team_restricts_commentsboolean Whether the team has disabled commenting globally. resolved_visibilitySharingResolvedVisibility <optional>
The current visibility of the link after considering the shared links policies of the the team (in case the link's owner is part of a team) and the shared folder (in case the linked file is part of a shared folder). This field is shown only if the caller has access to this info (the link's owner always has access to this data). For some links, an effective_audience value is returned instead. requested_visibilitySharingRequestedVisibility <optional>
The shared link's requested visibility. This can be overridden by the team and shared folder policies. The final visibility, after considering these policies, can be found in resolved_visibility. This is shown only if the caller is the link's owner and resolved_visibility is returned instead of effective_audience. revoke_failure_reasonSharingSharedLinkAccessFailureReason <optional>
The failure reason for revoking the link. This field will only be present if the can_revoke is false. effective_audienceSharingLinkAudience <optional>
The type of audience who can benefit from the access level specified by the `link_access_level` field. link_access_levelSharingLinkAccessLevel <optional>
The access level that the link will grant to its users. A link can grant additional rights to a user beyond their current access level. For example, if a user was invited as a viewer to a file, and then opens a link with `link_access_level` set to `editor`, then they will gain editor privileges. The `link_access_level` is a property of the link, and does not depend on who is calling this API. In particular, `link_access_level` does not take into account the API caller's current permissions to the content. audience_optionsArray.<SharingLinkAudienceOption> <optional>
A list of link audience options the user might be able to set as the new audience. can_set_passwordboolean <optional>
Whether the user can set a password for the link. can_remove_passwordboolean <optional>
Whether the user can remove the password of the link. require_passwordboolean <optional>
Whether the user is required to provide a password to view the link. can_use_extended_sharing_controlsboolean <optional>
Whether the user can use extended sharing controls, based on their account type. -
SharingLinkSettings
-
Settings that apply to a link.
Type:
- Object
Properties:
Name Type Argument Description access_levelSharingAccessLevel <optional>
The access level on the link for this file. Currently, it only accepts 'viewer' and 'viewer_no_comment'. audienceSharingLinkAudience <optional>
The type of audience on the link for this file. expirySharingLinkExpiry <optional>
An expiry timestamp to set on a link. passwordSharingLinkPassword <optional>
The password for the link. -
SharingListFileMembersArg
-
Arguments for list_file_members.
Type:
- Object
Properties:
Name Type Argument Description filestring The file for which you want to see members. actionsArray.<SharingMemberAction> <optional>
The actions for which to return permissions on a member. include_inheritedboolean Whether to include members who only have access from a parent shared folder. limitnumber Number of members to return max per query. Defaults to 100 if no limit is specified. -
SharingListFileMembersBatchArg
-
Arguments for list_file_members/batch.
Type:
- Object
Properties:
Name Type Description filesArray.<Object> Files for which to return members. limitnumber Number of members to return max per query. Defaults to 10 if no limit is specified. -
SharingListFileMembersBatchResult
-
Per-file result for list_file_members/batch.
Type:
- Object
Properties:
Name Type Description filestring This is the input file identifier, whether an ID or a path. resultSharingListFileMembersIndividualResult The result for this particular file. -
SharingListFileMembersContinueArg
-
Arguments for list_file_members/continue.
Type:
- Object
Properties:
Name Type Description cursorstring The cursor returned by your last call to list_file_members, list_file_members/continue, or list_file_members/batch. -
SharingListFileMembersContinueError
-
Error for list_file_members/continue.
Type:
- Object
Properties:
Name Type Argument Description user_errorSharingSharingUserError <optional>
Available if .tag is user_error. access_errorSharingSharingFileAccessError <optional>
Available if .tag is access_error. .tag'user_error' | 'access_error' | 'invalid_cursor' | 'other' Tag identifying the union variant. -
SharingListFileMembersCountResult
-
Type:
- Object
Properties:
Name Type Description membersSharingSharedFileMembers A list of members on this file. member_countnumber The number of members on this file. This does not include inherited members. -
SharingListFileMembersError
-
Error for list_file_members.
Type:
- Object
Properties:
Name Type Argument Description user_errorSharingSharingUserError <optional>
Available if .tag is user_error. access_errorSharingSharingFileAccessError <optional>
Available if .tag is access_error. .tag'user_error' | 'access_error' | 'other' Tag identifying the union variant. -
SharingListFileMembersIndividualResult
-
Type:
- Object
Properties:
Name Type Argument Description resultSharingListFileMembersCountResult <optional>
Available if .tag is result. The results of the query for this file if it was successful. access_errorSharingSharingFileAccessError <optional>
Available if .tag is access_error. The result of the query for this file if it was an error. .tag'result' | 'access_error' | 'other' Tag identifying the union variant. -
SharingListFilesArg
-
Arguments for list_received_files.
Type:
- Object
Properties:
Name Type Argument Description limitnumber Number of files to return max per query. Defaults to 100 if no limit is specified. actionsArray.<SharingFileAction> <optional>
A list of `FileAction`s corresponding to `FilePermission`s that should appear in the response's SharedFileMetadata.permissions field describing the actions the authenticated user can perform on the file. -
SharingListFilesContinueArg
-
Arguments for list_received_files/continue.
Type:
- Object
Properties:
Name Type Description cursorstring Cursor in ListFilesResult.cursor. -
SharingListFilesContinueError
-
Error results for list_received_files/continue.
Type:
- Object
Properties:
Name Type Argument Description user_errorSharingSharingUserError <optional>
Available if .tag is user_error. User account had a problem. .tag'user_error' | 'invalid_cursor' | 'other' Tag identifying the union variant. -
SharingListFilesResult
-
Success results for list_received_files.
Type:
- Object
Properties:
Name Type Argument Description entriesArray.<SharingSharedFileMetadata> Information about the files shared with current user. cursorstring <optional>
Cursor used to obtain additional shared files. -
SharingListFolderMembersArgs
-
Type:
- Object
Properties:
Name Type Argument Description shared_folder_idstring The ID for the shared folder. actionsArray.<SharingMemberAction> <optional>
This is a list indicating whether each returned member will include a boolean value MemberPermission.allow that describes whether the current user can perform the MemberAction on the member. limitnumber The maximum number of results that include members, groups and invitees to return per request. -
SharingListFolderMembersContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring The cursor returned by your last call to list_folder_members or list_folder_members/continue. -
SharingListFolderMembersContinueError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharedFolderAccessError <optional>
Available if .tag is access_error. .tag'access_error' | 'invalid_cursor' | 'other' Tag identifying the union variant. -
SharingListFolderMembersCursorArg
-
Type:
- Object
Properties:
Name Type Argument Description actionsArray.<SharingMemberAction> <optional>
This is a list indicating whether each returned member will include a boolean value MemberPermission.allow that describes whether the current user can perform the MemberAction on the member. limitnumber The maximum number of results that include members, groups and invitees to return per request. -
SharingListFoldersArgs
-
Type:
- Object
Properties:
Name Type Argument Description limitnumber The maximum number of results to return per request. actionsArray.<SharingFolderAction> <optional>
A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's SharedFolderMetadata.permissions field describing the actions the authenticated user can perform on the folder. -
SharingListFoldersContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring The cursor returned by the previous API call specified in the endpoint description. -
SharingListFoldersContinueError
-
Type:
- Object
Properties:
Name Type Description .tag'invalid_cursor' | 'other' Tag identifying the union variant. -
SharingListFoldersResult
-
Result for list_folders or list_mountable_folders, depending on which endpoint was requested. Unmounted shared folders can be identified by the absence of SharedFolderMetadata.path_lower.
Type:
- Object
Properties:
Name Type Argument Description entriesArray.<SharingSharedFolderMetadata> List of all shared folders the authenticated user has access to. cursorstring <optional>
Present if there are additional shared folders that have not been returned yet. Pass the cursor into the corresponding continue endpoint (either list_folders/continue or list_mountable_folders/continue) to list additional folders. -
Type:
- Object
Properties:
Name Type Argument Description pathstring <optional>
See list_shared_links description. cursorstring <optional>
The cursor returned by your last call to list_shared_links. direct_onlyboolean <optional>
See list_shared_links description. -
Type:
- Object
Properties:
Name Type Argument Description pathFilesLookupError <optional>
Available if .tag is path. .tag'path' | 'reset' | 'other' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Argument Description linksArray.<(SharingFileLinkMetadata|SharingFolderLinkMetadata|SharingSharedLinkMetadata)> Shared links applicable to the path argument. has_moreboolean Is true if there are additional shared links that have not been returned yet. Pass the cursor into list_shared_links to retrieve them. cursorstring <optional>
Pass the cursor into list_shared_links to obtain the additional links. Cursor is returned only if no path is given. -
SharingMemberAccessLevelResult
-
Contains information about a member's access level to content after an operation.
Type:
- Object
Properties:
Name Type Argument Description access_levelSharingAccessLevel <optional>
The member still has this level of access to the content through a parent folder. warningstring <optional>
A localized string with additional information about why the user has this access level to the content. access_detailsArray.<SharingParentFolderAccessInfo> <optional>
The parent folders that a member has access to. The field is present if the user has access to the first parent folder where the member gains access. -
SharingMemberAction
-
Actions that may be taken on members of a shared folder.
Type:
- Object
Properties:
Name Type Description .tag'leave_a_copy' | 'make_editor' | 'make_owner' | 'make_viewer' | 'make_viewer_no_comment' | 'remove' | 'other' Tag identifying the union variant. -
SharingMemberPermission
-
Whether the user is allowed to take the action on the associated member.
Type:
- Object
Properties:
Name Type Argument Description actionSharingMemberAction The action that the user may wish to take on the member. allowboolean True if the user is allowed to take the action. reasonSharingPermissionDeniedReason <optional>
The reason why the user is denied the permission. Not present if the action is allowed. -
SharingMemberPolicy
-
Policy governing who can be a member of a shared folder. Only applicable to folders owned by a user on a team.
Type:
- Object
Properties:
Name Type Description .tag'team' | 'anyone' | 'other' Tag identifying the union variant. -
SharingMemberSelector
-
Includes different ways to identify a member of a shared folder.
Type:
- Object
Properties:
Name Type Argument Description dropbox_idstring <optional>
Available if .tag is dropbox_id. Dropbox account, team member, or group ID of member. emailstring <optional>
Available if .tag is email. Email address of member. .tag'dropbox_id' | 'email' | 'other' Tag identifying the union variant. -
SharingMembershipInfo
-
The information about a member of the shared content.
Type:
- Object
Properties:
Name Type Argument Description access_typeSharingAccessLevel The access type for this member. It contains inherited access type from parent folder, and acquired access type from this folder. permissionsArray.<SharingMemberPermission> <optional>
The permissions that requesting user has on this member. The set of permissions corresponds to the MemberActions in the request. initialsstring <optional>
Never set. is_inheritedboolean True if the member has access from a parent folder. -
Type:
- Object
Properties:
Name Type Description urlstring URL of the shared link to change its settings. settingsSharingSharedLinkSettings Set of settings for the shared link. remove_expirationboolean If set to true, removes the expiration of the shared link. -
Type:
- Object
Properties:
Name Type Argument Description settings_errorSharingSharedLinkSettingsError <optional>
Available if .tag is settings_error. There is an error with the given settings. .tag'shared_link_not_found' | 'shared_link_access_denied' | 'unsupported_link_type' | 'other' | 'settings_error' | 'email_not_verified' Tag identifying the union variant. -
SharingMountFolderArg
-
Type:
- Object
Properties:
Name Type Description shared_folder_idstring The ID of the shared folder to mount. -
SharingMountFolderError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharedFolderAccessError <optional>
Available if .tag is access_error. insufficient_quotaSharingInsufficientQuotaAmounts <optional>
Available if .tag is insufficient_quota. The current user does not have enough space to mount the shared folder. .tag'access_error' | 'inside_shared_folder' | 'insufficient_quota' | 'already_mounted' | 'no_permission' | 'not_mountable' | 'other' Tag identifying the union variant. -
SharingParentFolderAccessInfo
-
Contains information about a parent folder that a member has access to.
Type:
- Object
Properties:
Name Type Description folder_namestring Display name for the folder. shared_folder_idstring The identifier of the parent shared folder. permissionsArray.<SharingMemberPermission> The user's permissions for the parent shared folder. pathstring The full path to the parent shared folder relative to the acting user's root. -
SharingPathLinkMetadata
-
Metadata for a path-based shared link.
Type:
- Object
Properties:
Name Type Argument Description .tag'path' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. urlstring URL of the shared link. visibilitySharingVisibility Who can access the link. pathstring Path in user's Dropbox. expiresTimestamp <optional>
Expiration time, if set. By default the link won't expire. -
SharingPendingUploadMode
-
Flag to indicate pending upload default (for linking to not-yet-existing paths).
Type:
- Object
Properties:
Name Type Description .tag'file' | 'folder' Tag identifying the union variant. -
SharingPermissionDeniedReason
-
Possible reasons the user is denied a permission.
Type:
- Object
Properties:
Name Type Argument Description insufficient_planSharingInsufficientPlan <optional>
Available if .tag is insufficient_plan. .tag'user_not_same_team_as_owner' | 'user_not_allowed_by_owner' | 'target_is_indirect_member' | 'target_is_owner' | 'target_is_self' | 'target_not_active' | 'folder_is_limited_team_folder' | 'owner_not_on_team' | 'permission_denied' | 'restricted_by_team' | 'user_account_type' | 'user_not_on_team' | 'folder_is_inside_shared_folder' | 'restricted_by_parent_folder' | 'insufficient_plan' | 'other' Tag identifying the union variant. -
SharingRelinquishFileMembershipArg
-
Type:
- Object
Properties:
Name Type Description filestring The path or id for the file. -
SharingRelinquishFileMembershipError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharingFileAccessError <optional>
Available if .tag is access_error. .tag'access_error' | 'group_access' | 'no_permission' | 'other' Tag identifying the union variant. -
SharingRelinquishFolderMembershipArg
-
Type:
- Object
Properties:
Name Type Description shared_folder_idstring The ID for the shared folder. leave_a_copyboolean Keep a copy of the folder's contents upon relinquishing membership. This must be set to false when the folder is within a team folder or another shared folder. -
SharingRelinquishFolderMembershipError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharedFolderAccessError <optional>
Available if .tag is access_error. .tag'access_error' | 'folder_owner' | 'mounted' | 'group_access' | 'team_folder' | 'no_permission' | 'no_explicit_access' | 'other' Tag identifying the union variant. -
SharingRemoveFileMemberArg
-
Arguments for remove_file_member_2.
Type:
- Object
Properties:
Name Type Description filestring File from which to remove members. memberSharingMemberSelector Member to remove from this file. Note that even if an email is specified, it may result in the removal of a user (not an invitee) if the user's main account corresponds to that email address. -
SharingRemoveFileMemberError
-
Errors for remove_file_member_2.
Type:
- Object
Properties:
Name Type Argument Description user_errorSharingSharingUserError <optional>
Available if .tag is user_error. access_errorSharingSharingFileAccessError <optional>
Available if .tag is access_error. no_explicit_accessSharingMemberAccessLevelResult <optional>
Available if .tag is no_explicit_access. This member does not have explicit access to the file and therefore cannot be removed. The return value is the access that a user might have to the file from a parent folder. .tag'user_error' | 'access_error' | 'no_explicit_access' | 'other' Tag identifying the union variant. -
SharingRemoveFolderMemberArg
-
Type:
- Object
Properties:
Name Type Description shared_folder_idstring The ID for the shared folder. memberSharingMemberSelector The member to remove from the folder. leave_a_copyboolean If true, the removed user will keep their copy of the folder after it's unshared, assuming it was mounted. Otherwise, it will be removed from their Dropbox. This must be set to false when removing a group, or when the folder is within a team folder or another shared folder. -
SharingRemoveFolderMemberError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharedFolderAccessError <optional>
Available if .tag is access_error. member_errorSharingSharedFolderMemberError <optional>
Available if .tag is member_error. .tag'access_error' | 'member_error' | 'folder_owner' | 'group_access' | 'team_folder' | 'no_permission' | 'too_many_files' | 'other' Tag identifying the union variant. -
SharingRemoveMemberJobStatus
-
Type:
- Object
Properties:
Name Type Argument Description completeSharingMemberAccessLevelResult <optional>
Available if .tag is complete. Removing the folder member has finished. The value is information about whether the member has another form of access. failedSharingRemoveFolderMemberError <optional>
Available if .tag is failed. .tag'in_progress' | 'complete' | 'failed' Tag identifying the union variant. -
SharingRequestedLinkAccessLevel
-
Type:
- Object
Properties:
Name Type Description .tag'viewer' | 'editor' | 'max' | 'default' | 'other' Tag identifying the union variant. -
SharingRequestedVisibility
-
The access permission that can be requested by the caller for the shared link. Note that the final resolved visibility of the shared link takes into account other aspects, such as team and shared folder settings. Check the ResolvedVisibility for more info on the possible resolved visibility values of shared links.
Type:
- Object
Properties:
Name Type Description .tag'public' | 'team_only' | 'password' Tag identifying the union variant. -
SharingResolvedVisibility
-
The actual access permissions values of shared links after taking into account user preferences and the team and shared folder settings. Check the RequestedVisibility for more info on the possible visibility values that can be set by the shared link's owner.
Type:
- Object
Properties:
Name Type Description .tag'public' | 'team_only' | 'password' | 'team_and_password' | 'shared_folder_only' | 'no_one' | 'only_you' | 'other' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Description urlstring URL of the shared link. -
Type:
- Object
Properties:
Name Type Description .tag'shared_link_not_found' | 'shared_link_access_denied' | 'unsupported_link_type' | 'other' | 'shared_link_malformed' Tag identifying the union variant. -
SharingSetAccessInheritanceArg
-
Type:
- Object
Properties:
Name Type Description shared_folder_idstring The ID for the shared folder. access_inheritanceSharingAccessInheritance The access inheritance settings for the folder. -
SharingSetAccessInheritanceError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharedFolderAccessError <optional>
Available if .tag is access_error. Unable to access shared folder. .tag'access_error' | 'no_permission' | 'other' Tag identifying the union variant. -
Metadata of a shared link for a file or folder.
Type:
- Object
Properties:
Name Type Argument Description audience_optionsArray.<SharingLinkAudience> The audience options that are available for the content. Some audience options may be unavailable. For example, team_only may be unavailable if the content is not owned by a user on a team. The 'default' audience option is always available if the user can modify link settings. current_audienceSharingLinkAudience The current audience of the link. link_permissionsArray.<SharingLinkPermission> A list of permissions for actions you can perform on the link. password_protectedboolean Whether the link is protected by a password. urlstring The URL of the link. access_levelSharingAccessLevel <optional>
The access level on the link for this file. audience_restricting_shared_folderSharingAudienceRestrictingSharedFolder <optional>
The shared folder that prevents the link audience for this link from being more restrictive. expiryTimestamp <optional>
Whether the link has an expiry set on it. A link with an expiry will have its audience changed to members when the expiry is reached. audience_exceptionsSharingAudienceExceptions <optional>
The content inside this folder with link audience different than this folder's. This is only returned when an endpoint that returns metadata for a single shared folder is called, e.g. /get_folder_metadata. -
Type:
- Object
Properties:
Name Type Argument Description audience_optionsArray.<SharingLinkAudience> The audience options that are available for the content. Some audience options may be unavailable. For example, team_only may be unavailable if the content is not owned by a user on a team. The 'default' audience option is always available if the user can modify link settings. current_audienceSharingLinkAudience The current audience of the link. link_permissionsArray.<SharingLinkPermission> A list of permissions for actions you can perform on the link. password_protectedboolean Whether the link is protected by a password. access_levelSharingAccessLevel <optional>
The access level on the link for this file. audience_restricting_shared_folderSharingAudienceRestrictingSharedFolder <optional>
The shared folder that prevents the link audience for this link from being more restrictive. expiryTimestamp <optional>
Whether the link has an expiry set on it. A link with an expiry will have its audience changed to members when the expiry is reached. -
Shared file user, group, and invitee membership. Used for the results of list_file_members and list_file_members/continue, and used as part of the results for list_file_members/batch.
Type:
- Object
Properties:
Name Type Argument Description usersArray.<SharingUserFileMembershipInfo> The list of user members of the shared file. groupsArray.<SharingGroupMembershipInfo> The list of group members of the shared file. inviteesArray.<SharingInviteeMembershipInfo> The list of invited members of a file, but have not logged in and claimed this. cursorstring <optional>
Present if there are additional shared file members that have not been returned yet. Pass the cursor into list_file_members/continue to list additional members. -
Properties of the shared file.
Type:
- Object
Properties:
Name Type Argument Description idstring The ID of the file. namestring The name of this file. policySharingFolderPolicy Policies governing this shared file. preview_urlstring URL for displaying a web preview of the shared file. access_typeSharingAccessLevel <optional>
The current user's access level for this shared file. expected_link_metadataSharingExpectedSharedContentLinkMetadata <optional>
- The expected metadata of the link associated for the file when it is first shared. Absent if the link already exists. This is for an unreleased feature so it may not be returned yet. link_metadataSharingSharedContentLinkMetadata <optional>
The metadata of the link associated for the file. This is for an unreleased feature so it may not be returned yet. owner_display_namesArray.<string> <optional>
The display names of the users that own the file. If the file is part of a team folder, the display names of the team admins are also included. Absent if the owner display names cannot be fetched. owner_teamUsersTeam <optional>
The team that owns the file. This field is not present if the file is not owned by a team. parent_shared_folder_idstring <optional>
The ID of the parent shared folder. This field is present only if the file is contained within a shared folder. path_displaystring <optional>
The cased path to be used for display purposes only. In rare instances the casing will not correctly match the user's filesystem, but this behavior will match the path provided in the Core API v1. Absent for unmounted files. path_lowerstring <optional>
The lower-case full path of this file. Absent for unmounted files. permissionsArray.<SharingFilePermission> <optional>
The sharing permissions that requesting user has on this file. This corresponds to the entries given in GetFileMetadataBatchArg.actions or GetFileMetadataArg.actions. time_invitedTimestamp <optional>
Timestamp indicating when the current user was invited to this shared file. If the user was not invited to the shared file, the timestamp will indicate when the user was invited to the parent shared folder. This value may be absent. -
There is an error accessing the shared folder.
Type:
- Object
Properties:
Name Type Description .tag'invalid_id' | 'not_a_member' | 'email_unverified' | 'unmounted' | 'other' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Argument Description no_explicit_accessSharingMemberAccessLevelResult <optional>
Available if .tag is no_explicit_access. The target member only has inherited access to the shared folder. .tag'invalid_dropbox_id' | 'not_a_member' | 'no_explicit_access' | 'other' Tag identifying the union variant. -
Shared folder user and group membership.
Type:
- Object
Properties:
Name Type Argument Description usersArray.<SharingUserMembershipInfo> The list of user members of the shared folder. groupsArray.<SharingGroupMembershipInfo> The list of group members of the shared folder. inviteesArray.<SharingInviteeMembershipInfo> The list of invitees to the shared folder. cursorstring <optional>
Present if there are additional shared folder members that have not been returned yet. Pass the cursor into list_folder_members/continue to list additional members. -
The metadata which includes basic information about the shared folder.
Type:
- Object
Properties:
Name Type Argument Description access_typeSharingAccessLevel The current user's access level for this shared folder. is_inside_team_folderboolean Whether this folder is inside of a team folder. is_team_folderboolean Whether this folder is a team folder https://www.dropbox.com/en/help/986. namestring The name of the this shared folder. policySharingFolderPolicy Policies governing this shared folder. preview_urlstring URL for displaying a web preview of the shared folder. shared_folder_idstring The ID of the shared folder. time_invitedTimestamp Timestamp indicating when the current user was invited to this shared folder. owner_display_namesArray.<string> <optional>
The display names of the users that own the folder. If the folder is part of a team folder, the display names of the team admins are also included. Absent if the owner display names cannot be fetched. owner_teamUsersTeam <optional>
The team that owns the folder. This field is not present if the folder is not owned by a team. parent_shared_folder_idstring <optional>
The ID of the parent shared folder. This field is present only if the folder is contained within another shared folder. path_lowerstring <optional>
The lower-cased full path of this shared folder. Absent for unmounted folders. parent_folder_namestring <optional>
Display name for the parent folder. link_metadataSharingSharedContentLinkMetadata <optional>
The metadata of the shared content link to this shared folder. Absent if there is no link on the folder. This is for an unreleased feature so it may not be returned yet. permissionsArray.<SharingFolderPermission> <optional>
Actions the current user may perform on the folder and its contents. The set of permissions corresponds to the FolderActions in the request. access_inheritanceSharingAccessInheritance Whether the folder inherits its members from its parent. -
Properties of the shared folder.
Type:
- Object
Properties:
Name Type Argument Description access_typeSharingAccessLevel The current user's access level for this shared folder. is_inside_team_folderboolean Whether this folder is inside of a team folder. is_team_folderboolean Whether this folder is a team folder https://www.dropbox.com/en/help/986. owner_display_namesArray.<string> <optional>
The display names of the users that own the folder. If the folder is part of a team folder, the display names of the team admins are also included. Absent if the owner display names cannot be fetched. owner_teamUsersTeam <optional>
The team that owns the folder. This field is not present if the folder is not owned by a team. parent_shared_folder_idstring <optional>
The ID of the parent shared folder. This field is present only if the folder is contained within another shared folder. path_lowerstring <optional>
The lower-cased full path of this shared folder. Absent for unmounted folders. parent_folder_namestring <optional>
Display name for the parent folder. -
Type:
- Object
Properties:
Name Type Description .tag'login_required' | 'email_verify_required' | 'password_required' | 'team_only' | 'owner_only' | 'other' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Argument Description metadataSharingFileLinkMetadata | SharingFolderLinkMetadata | SharingSharedLinkMetadata <optional>
Available if .tag is metadata. Metadata of the shared link that already exists. .tag'metadata' | 'other' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Description .tag'shared_link_not_found' | 'shared_link_access_denied' | 'unsupported_link_type' | 'other' Tag identifying the union variant. -
The metadata of a shared link.
Type:
- Object
Properties:
Name Type Argument Description .tag"file" | "folder" Tag identifying the subtype variant. urlstring URL of the shared link. namestring The linked file name (including extension). This never contains a slash. link_permissionsSharingLinkPermissions The link's access permissions. idstring <optional>
A unique identifier for the linked file. expiresTimestamp <optional>
Expiration time, if set. By default the link won't expire. path_lowerstring <optional>
The lowercased full path in the user's Dropbox. This always starts with a slash. This field will only be present only if the linked file is in the authenticated user's dropbox. team_member_infoSharingTeamMemberInfo <optional>
The team membership information of the link's owner. This field will only be present if the link's owner is a team member. content_owner_team_infoUsersTeam <optional>
The team information of the content's owner. This field will only be present if the content's owner is a team member and the content's owner team is different from the link's owner team. -
Who can view shared links in this folder.
Type:
- Object
Properties:
Name Type Description .tag'anyone' | 'team' | 'members' | 'other' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Argument Description require_passwordboolean <optional>
Boolean flag to enable or disable password protection. link_passwordstring <optional>
If require_password is true, this is needed to specify the password to access the link. expiresTimestamp <optional>
Expiration time of the shared link. By default the link won't expire. audienceSharingLinkAudience <optional>
The new audience who can benefit from the access level specified by the link's access level specified in the `link_access_level` field of `LinkPermissions`. This is used in conjunction with team policies and shared folder policies to determine the final effective audience type in the `effective_audience` field of `LinkPermissions. accessSharingRequestedLinkAccessLevel <optional>
Requested access level you want the audience to gain from this link. Note, modifying access level for an existing link is not supported. requested_visibilitySharingRequestedVisibility <optional>
Use audience instead. The requested access for this shared link. allow_downloadboolean <optional>
Boolean flag to allow or not download capabilities for shared links. -
Type:
- Object
Properties:
Name Type Description .tag'invalid_settings' | 'not_authorized' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Argument Description pathstring The path to the folder to share. If it does not exist, then a new one is created. acl_update_policySharingAclUpdatePolicy <optional>
Who can add and remove members of this shared folder. force_asyncboolean Whether to force the share to happen asynchronously. member_policySharingMemberPolicy <optional>
Who can be a member of this shared folder. Only applicable if the current user is on a team. shared_link_policySharingSharedLinkPolicy <optional>
The policy to apply to shared links created for content inside this shared folder. The current user must be on a team to set this policy to SharedLinkPolicy.members. viewer_info_policySharingViewerInfoPolicy <optional>
Who can enable/disable viewer info for this shared folder. access_inheritanceSharingAccessInheritance The access inheritance settings for the folder. actionsArray.<SharingFolderAction> <optional>
A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's SharedFolderMetadata.permissions field describing the actions the authenticated user can perform on the folder. link_settingsSharingLinkSettings <optional>
Settings on the link for this folder. -
Type:
- Object
Properties:
Name Type Argument Description pathstring The path to the folder to share. If it does not exist, then a new one is created. acl_update_policySharingAclUpdatePolicy <optional>
Who can add and remove members of this shared folder. force_asyncboolean Whether to force the share to happen asynchronously. member_policySharingMemberPolicy <optional>
Who can be a member of this shared folder. Only applicable if the current user is on a team. shared_link_policySharingSharedLinkPolicy <optional>
The policy to apply to shared links created for content inside this shared folder. The current user must be on a team to set this policy to SharedLinkPolicy.members. viewer_info_policySharingViewerInfoPolicy <optional>
Who can enable/disable viewer info for this shared folder. access_inheritanceSharingAccessInheritance The access inheritance settings for the folder. -
Type:
- Object
Properties:
Name Type Argument Description bad_pathSharingSharePathError <optional>
Available if .tag is bad_path. :field:`ShareFolderArg.path` is invalid. .tag'email_unverified' | 'bad_path' | 'team_policy_disallows_member_policy' | 'disallowed_shared_link_policy' | 'other' | 'no_permission' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Argument Description bad_pathSharingSharePathError <optional>
Available if .tag is bad_path. :field:`ShareFolderArg.path` is invalid. .tag'email_unverified' | 'bad_path' | 'team_policy_disallows_member_policy' | 'disallowed_shared_link_policy' | 'other' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Argument Description completeSharingSharedFolderMetadata <optional>
Available if .tag is complete. The share job has finished. The value is the metadata for the folder. failedSharingShareFolderError <optional>
Available if .tag is failed. .tag'in_progress' | 'complete' | 'failed' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. completeSharingSharedFolderMetadata <optional>
Available if .tag is complete. .tag'async_job_id' | 'complete' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Argument Description already_sharedSharingSharedFolderMetadata <optional>
Available if .tag is already_shared. Folder is already shared. Contains metadata about the existing shared folder. .tag'is_file' | 'inside_shared_folder' | 'contains_shared_folder' | 'contains_app_folder' | 'contains_team_folder' | 'is_app_folder' | 'inside_app_folder' | 'is_public_folder' | 'inside_public_folder' | 'already_shared' | 'invalid_path' | 'is_osx_package' | 'inside_osx_package' | 'is_vault' | 'is_vault_locked' | 'is_family' | 'other' Tag identifying the union variant. -
SharingSharingFileAccessError
-
User could not access this file.
Type:
- Object
Properties:
Name Type Description .tag'no_permission' | 'invalid_file' | 'is_folder' | 'inside_public_folder' | 'inside_osx_package' | 'other' Tag identifying the union variant. -
SharingSharingUserError
-
User account had a problem preventing this action.
Type:
- Object
Properties:
Name Type Description .tag'email_unverified' | 'other' Tag identifying the union variant. -
SharingTeamMemberInfo
-
Information about a team member.
Type:
- Object
Properties:
Name Type Argument Description team_infoUsersTeam Information about the member's team. display_namestring The display name of the user. member_idstring <optional>
ID of user as a member of a team. This field will only be present if the member is in the same team as current user. -
SharingTransferFolderArg
-
Type:
- Object
Properties:
Name Type Description shared_folder_idstring The ID for the shared folder. to_dropbox_idstring A account or team member ID to transfer ownership to. -
SharingTransferFolderError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharedFolderAccessError <optional>
Available if .tag is access_error. .tag'access_error' | 'invalid_dropbox_id' | 'new_owner_not_a_member' | 'new_owner_unmounted' | 'new_owner_email_unverified' | 'team_folder' | 'no_permission' | 'other' Tag identifying the union variant. -
SharingUnmountFolderArg
-
Type:
- Object
Properties:
Name Type Description shared_folder_idstring The ID for the shared folder. -
SharingUnmountFolderError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharedFolderAccessError <optional>
Available if .tag is access_error. .tag'access_error' | 'no_permission' | 'not_unmountable' | 'other' Tag identifying the union variant. -
Arguments for unshare_file.
Type:
- Object
Properties:
Name Type Description filestring The file to unshare. -
Error result for unshare_file.
Type:
- Object
Properties:
Name Type Argument Description user_errorSharingSharingUserError <optional>
Available if .tag is user_error. access_errorSharingSharingFileAccessError <optional>
Available if .tag is access_error. .tag'user_error' | 'access_error' | 'other' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Description shared_folder_idstring The ID for the shared folder. leave_a_copyboolean If true, members of this shared folder will get a copy of this folder after it's unshared. Otherwise, it will be removed from their Dropbox. The current user, who is an owner, will always retain their copy. -
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharedFolderAccessError <optional>
Available if .tag is access_error. .tag'access_error' | 'team_folder' | 'no_permission' | 'too_many_files' | 'other' Tag identifying the union variant. -
SharingUpdateFileMemberArgs
-
Arguments for update_file_member.
Type:
- Object
Properties:
Name Type Description filestring File for which we are changing a member's access. memberSharingMemberSelector The member whose access we are changing. access_levelSharingAccessLevel The new access level for the member. -
SharingUpdateFolderMemberArg
-
Type:
- Object
Properties:
Name Type Description shared_folder_idstring The ID for the shared folder. memberSharingMemberSelector The member of the shared folder to update. Only the MemberSelector.dropbox_id may be set at this time. access_levelSharingAccessLevel The new access level for member. AccessLevel.owner is disallowed. -
SharingUpdateFolderMemberError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharedFolderAccessError <optional>
Available if .tag is access_error. member_errorSharingSharedFolderMemberError <optional>
Available if .tag is member_error. no_explicit_accessSharingAddFolderMemberError <optional>
Available if .tag is no_explicit_access. If updating the access type required the member to be added to the shared folder and there was an error when adding the member. .tag'access_error' | 'member_error' | 'no_explicit_access' | 'insufficient_plan' | 'no_permission' | 'other' Tag identifying the union variant. -
SharingUpdateFolderPolicyArg
-
If any of the policies are unset, then they retain their current setting.
Type:
- Object
Properties:
Name Type Argument Description shared_folder_idstring The ID for the shared folder. member_policySharingMemberPolicy <optional>
Who can be a member of this shared folder. Only applicable if the current user is on a team. acl_update_policySharingAclUpdatePolicy <optional>
Who can add and remove members of this shared folder. viewer_info_policySharingViewerInfoPolicy <optional>
Who can enable/disable viewer info for this shared folder. shared_link_policySharingSharedLinkPolicy <optional>
The policy to apply to shared links created for content inside this shared folder. The current user must be on a team to set this policy to SharedLinkPolicy.members. link_settingsSharingLinkSettings <optional>
Settings on the link for this folder. actionsArray.<SharingFolderAction> <optional>
A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's SharedFolderMetadata.permissions field describing the actions the authenticated user can perform on the folder. -
SharingUpdateFolderPolicyError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorSharingSharedFolderAccessError <optional>
Available if .tag is access_error. .tag'access_error' | 'not_on_team' | 'team_policy_disallows_member_policy' | 'disallowed_shared_link_policy' | 'no_permission' | 'team_folder' | 'other' Tag identifying the union variant. -
SharingUserFileMembershipInfo
-
The information about a user member of the shared content with an appended last seen timestamp.
Type:
- Object
Properties:
Name Type Argument Description access_typeSharingAccessLevel The access type for this member. It contains inherited access type from parent folder, and acquired access type from this folder. userSharingUserInfo The account information for the membership user. permissionsArray.<SharingMemberPermission> <optional>
The permissions that requesting user has on this member. The set of permissions corresponds to the MemberActions in the request. initialsstring <optional>
Never set. is_inheritedboolean True if the member has access from a parent folder. time_last_seenTimestamp <optional>
The UTC timestamp of when the user has last seen the content. Only populated if the user has seen the content and the caller has a plan that includes viewer history. platform_typeSeenStatePlatformType <optional>
The platform on which the user has last seen the content, or unknown. -
SharingUserInfo
-
Basic information about a user. Use users.get_account and users.get_account_batch to obtain more detailed information.
Type:
- Object
Properties:
Name Type Argument Description account_idstring The account ID of the user. emailstring Email address of user. display_namestring The display name of the user. same_teamboolean If the user is in the same team as current user. team_member_idstring <optional>
The team member ID of the shared folder member. Only present if same_team is true. -
SharingUserMembershipInfo
-
The information about a user member of the shared content.
Type:
- Object
Properties:
Name Type Argument Description access_typeSharingAccessLevel The access type for this member. It contains inherited access type from parent folder, and acquired access type from this folder. userSharingUserInfo The account information for the membership user. permissionsArray.<SharingMemberPermission> <optional>
The permissions that requesting user has on this member. The set of permissions corresponds to the MemberActions in the request. initialsstring <optional>
Never set. is_inheritedboolean True if the member has access from a parent folder. -
SharingViewerInfoPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'enabled' | 'disabled' | 'other' Tag identifying the union variant. -
SharingVisibility
-
Who can access a shared link. The most open visibility is public. The default depends on many aspects, such as team and user preferences and shared folder settings.
Type:
- Object
Properties:
Name Type Description .tag'public' | 'team_only' | 'password' | 'team_and_password' | 'shared_folder_only' | 'other' Tag identifying the union variant. -
SharingVisibilityPolicy
-
Type:
- Object
Properties:
Name Type Argument Description policySharingRequestedVisibility This is the value to submit when saving the visibility setting. resolved_policySharingAlphaResolvedVisibility This is what the effective policy would be, if you selected this option. The resolved policy is obtained after considering external effects such as shared folder settings and team policy. This value is guaranteed to be provided. allowedboolean Whether the user is permitted to set the visibility to this policy. disallowed_reasonSharingVisibilityPolicyDisallowedReason <optional>
If allowed is false, this will provide the reason that the user is not permitted to set the visibility to this policy. -
SharingVisibilityPolicyDisallowedReason
-
Type:
- Object
Properties:
Name Type Description .tag'delete_and_recreate' | 'restricted_by_shared_folder' | 'restricted_by_team' | 'user_not_on_team' | 'user_account_type' | 'permission_denied' | 'other' Tag identifying the union variant. -
TeamActiveWebSession
-
Information on active web sessions.
Type:
- Object
Properties:
Name Type Argument Description session_idstring The session id. user_agentstring Information on the hosting device. osstring Information on the hosting operating system. browserstring Information on the browser used for this web session. ip_addressstring <optional>
The IP address of the last activity from this session. countrystring <optional>
The country from which the last activity from this session was made. createdTimestamp <optional>
The time this session was created. updatedTimestamp <optional>
The time of the last activity from this session. expiresTimestamp <optional>
The time this session expires. -
TeamAddSecondaryEmailResult
-
Result of trying to add a secondary email to a user. 'success' is the only value indicating that a secondary email was successfully added to a user. The other values explain the type of error that occurred, and include the email for which the error occurred.
Type:
- Object
Properties:
Name Type Argument Description successSecondaryEmailsSecondaryEmail <optional>
Available if .tag is success. Describes a secondary email that was successfully added to a user. unavailablestring <optional>
Available if .tag is unavailable. Secondary email is not available to be claimed by the user. already_pendingstring <optional>
Available if .tag is already_pending. Secondary email is already a pending email for the user. already_owned_by_userstring <optional>
Available if .tag is already_owned_by_user. Secondary email is already a verified email for the user. reached_limitstring <optional>
Available if .tag is reached_limit. User already has the maximum number of secondary emails allowed. transient_errorstring <optional>
Available if .tag is transient_error. A transient error occurred. Please try again later. too_many_updatesstring <optional>
Available if .tag is too_many_updates. An error occurred due to conflicting updates. Please try again later. unknown_errorstring <optional>
Available if .tag is unknown_error. An unknown error occurred. rate_limitedstring <optional>
Available if .tag is rate_limited. Too many emails are being sent to this email address. Please try again later. .tag'success' | 'unavailable' | 'already_pending' | 'already_owned_by_user' | 'reached_limit' | 'transient_error' | 'too_many_updates' | 'unknown_error' | 'rate_limited' | 'other' Tag identifying the union variant. -
TeamAddSecondaryEmailsArg
-
Type:
- Object
Properties:
Name Type Description new_secondary_emailsArray.<TeamUserSecondaryEmailsArg> List of users and secondary emails to add. -
TeamAddSecondaryEmailsError
-
Error returned when adding secondary emails fails.
Type:
- Object
Properties:
Name Type Description .tag'secondary_emails_disabled' | 'too_many_emails' | 'other' Tag identifying the union variant. -
TeamAddSecondaryEmailsResult
-
Type:
- Object
Properties:
Name Type Description resultsArray.<TeamUserAddResult> List of users and secondary email results. -
TeamAdminTier
-
Describes which team-related admin permissions a user has.
Type:
- Object
Properties:
Name Type Description .tag'team_admin' | 'user_management_admin' | 'support_admin' | 'member_only' Tag identifying the union variant. -
TeamApiApp
-
Information on linked third party applications.
Type:
- Object
Properties:
Name Type Argument Description app_idstring The application unique id. app_namestring The application name. is_app_folderboolean Whether the linked application uses a dedicated folder. publisherstring <optional>
The application publisher name. publisher_urlstring <optional>
The publisher's URL. linkedTimestamp <optional>
The time this application was linked. -
TeamBaseDfbReport
-
Base report structure.
Type:
- Object
Properties:
Name Type Description start_datestring First date present in the results as 'YYYY-MM-DD' or None. -
TeamBaseTeamFolderError
-
Base error that all errors for existing team folders should extend.
Type:
- Object
Properties:
Name Type Argument Description access_errorTeamTeamFolderAccessError <optional>
Available if .tag is access_error. status_errorTeamTeamFolderInvalidStatusError <optional>
Available if .tag is status_error. team_shared_dropbox_errorTeamTeamFolderTeamSharedDropboxError <optional>
- Available if .tag is team_shared_dropbox_error. .tag'access_error' | 'status_error' | 'team_shared_dropbox_error' | 'other' Tag identifying the union variant. -
TeamCommonGroupManagementType
-
The group type determines how a group is managed.
Type:
- Object
Properties:
Name Type Description .tag'user_managed' | 'company_managed' | 'system_managed' | 'other' Tag identifying the union variant. -
TeamCommonGroupSummary
-
Information about a group.
Type:
- Object
Properties:
Name Type Argument Description group_namestring group_idstring group_management_typeTeamCommonGroupManagementType Who is allowed to manage the group. group_external_idstring <optional>
External ID of group. This is an arbitrary ID that an admin can attach to a group. member_countnumber <optional>
The number of members in the group. -
TeamCommonGroupType
-
The group type determines how a group is created and managed.
Type:
- Object
Properties:
Name Type Description .tag'team' | 'user_managed' | 'other' Tag identifying the union variant. -
TeamCommonMemberSpaceLimitType
-
The type of the space limit imposed on a team member.
Type:
- Object
Properties:
Name Type Description .tag'off' | 'alert_only' | 'stop_sync' | 'other' Tag identifying the union variant. -
TeamCommonTimeRange
-
Time range.
Type:
- Object
-
TeamCustomQuotaError
-
Error returned when getting member custom quota.
Type:
- Object
Properties:
Name Type Description .tag'too_many_users' | 'other' Tag identifying the union variant. -
TeamCustomQuotaResult
-
User custom quota.
Type:
- Object
Properties:
Name Type Argument Description successTeamUserCustomQuotaResult <optional>
Available if .tag is success. User's custom quota. invalid_userTeamUserSelectorArg <optional>
Available if .tag is invalid_user. Invalid user (not in team). .tag'success' | 'invalid_user' | 'other' Tag identifying the union variant. -
TeamCustomQuotaUsersArg
-
Type:
- Object
Properties:
Name Type Description usersArray.<TeamUserSelectorArg> List of users. -
TeamDateRange
-
Input arguments that can be provided for most reports.
Type:
- Object
-
TeamDateRangeError
-
Errors that can originate from problems in input arguments to reports.
Type:
- Object
Properties:
Name Type Description .tag'other' Tag identifying the union variant. -
TeamDeleteSecondaryEmailResult
-
Result of trying to delete a secondary email address. 'success' is the only value indicating that a secondary email was successfully deleted. The other values explain the type of error that occurred, and include the email for which the error occurred.
Type:
- Object
Properties:
Name Type Argument Description successstring <optional>
Available if .tag is success. The secondary email was successfully deleted. not_foundstring <optional>
Available if .tag is not_found. The email address was not found for the user. cannot_remove_primarystring <optional>
Available if .tag is cannot_remove_primary. The email address is the primary email address of the user, and cannot be removed. .tag'success' | 'not_found' | 'cannot_remove_primary' | 'other' Tag identifying the union variant. -
TeamDeleteSecondaryEmailsArg
-
Type:
- Object
Properties:
Name Type Description emails_to_deleteArray.<TeamUserSecondaryEmailsArg> List of users and their secondary emails to delete. -
TeamDeleteSecondaryEmailsResult
-
Type:
- Object
Properties:
Name Type Description resultsArray.<TeamUserDeleteResult> -
TeamDesktopClientSession
-
Information about linked Dropbox desktop client sessions.
Type:
- Object
Properties:
Name Type Argument Description session_idstring The session id. host_namestring Name of the hosting desktop. client_typeTeamDesktopPlatform The Dropbox desktop client type. client_versionstring The Dropbox client version. platformstring Information on the hosting platform. is_delete_on_unlink_supportedboolean Whether it's possible to delete all of the account files upon unlinking. ip_addressstring <optional>
The IP address of the last activity from this session. countrystring <optional>
The country from which the last activity from this session was made. createdTimestamp <optional>
The time this session was created. updatedTimestamp <optional>
The time of the last activity from this session. -
TeamDesktopPlatform
-
Type:
- Object
Properties:
Name Type Description .tag'windows' | 'mac' | 'linux' | 'other' Tag identifying the union variant. -
TeamDevicesActive
-
Each of the items is an array of values, one value per day. The value is the number of devices active within a time window, ending with that day. If there is no data for a day, then the value will be None.
Type:
- Object
Properties:
Name Type Description windowsArray.<Object> Array of number of linked windows (desktop) clients with activity. macosArray.<Object> Array of number of linked mac (desktop) clients with activity. linuxArray.<Object> Array of number of linked linus (desktop) clients with activity. iosArray.<Object> Array of number of linked ios devices with activity. androidArray.<Object> Array of number of linked android devices with activity. otherArray.<Object> Array of number of other linked devices (blackberry, windows phone, etc) with activity. totalArray.<Object> Array of total number of linked clients with activity. -
TeamDeviceSession
-
Type:
- Object
Properties:
Name Type Argument Description session_idstring The session id. ip_addressstring <optional>
The IP address of the last activity from this session. countrystring <optional>
The country from which the last activity from this session was made. createdTimestamp <optional>
The time this session was created. updatedTimestamp <optional>
The time of the last activity from this session. -
TeamDeviceSessionArg
-
Type:
- Object
Properties:
Name Type Description session_idstring The session id. team_member_idstring The unique id of the member owning the device. -
TeamExcludedUsersListArg
-
Excluded users list argument.
Type:
- Object
Properties:
Name Type Description limitnumber Number of results to return per call. -
TeamExcludedUsersListContinueArg
-
Excluded users list continue argument.
Type:
- Object
Properties:
Name Type Description cursorstring Indicates from what point to get the next set of users. -
TeamExcludedUsersListContinueError
-
Excluded users list continue error.
Type:
- Object
Properties:
Name Type Description .tag'invalid_cursor' | 'other' Tag identifying the union variant. -
TeamExcludedUsersListError
-
Excluded users list error.
Type:
- Object
Properties:
Name Type Description .tag'list_error' | 'other' Tag identifying the union variant. -
TeamExcludedUsersListResult
-
Excluded users list result.
Type:
- Object
Properties:
Name Type Argument Description usersArray.<TeamMemberProfile> has_moreboolean Is true if there are additional excluded users that have not been returned yet. An additional call to member_space_limits/excluded_users/list/continue can retrieve them. cursorstring <optional>
Pass the cursor into member_space_limits/excluded_users/list/continue to obtain additional excluded users. -
TeamExcludedUsersUpdateArg
-
Argument of excluded users update operation. Should include a list of users to add/remove (according to endpoint), Maximum size of the list is 1000 users.
Type:
- Object
Properties:
Name Type Argument Description usersArray.<TeamUserSelectorArg> <optional>
List of users to be added/removed. -
TeamExcludedUsersUpdateError
-
Excluded users update error.
Type:
- Object
Properties:
Name Type Description .tag'users_not_in_team' | 'too_many_users' | 'other' Tag identifying the union variant. -
TeamExcludedUsersUpdateResult
-
Excluded users update result.
Type:
- Object
Properties:
Name Type Description statusTeamExcludedUsersUpdateStatus Update status. -
TeamExcludedUsersUpdateStatus
-
Excluded users update operation status.
Type:
- Object
Properties:
Name Type Description .tag'success' | 'other' Tag identifying the union variant. -
TeamFeature
-
A set of features that a Dropbox Business account may support.
Type:
- Object
Properties:
Name Type Description .tag'upload_api_rate_limit' | 'has_team_shared_dropbox' | 'has_team_file_events' | 'has_team_selective_sync' | 'other' Tag identifying the union variant. -
TeamFeaturesGetValuesBatchArg
-
Type:
- Object
Properties:
Name Type Description featuresArray.<TeamFeature> A list of features in Feature. If the list is empty, this route will return FeaturesGetValuesBatchError. -
TeamFeaturesGetValuesBatchError
-
Type:
- Object
Properties:
Name Type Description .tag'empty_features_list' | 'other' Tag identifying the union variant. -
TeamFeaturesGetValuesBatchResult
-
Type:
- Object
Properties:
Name Type Description valuesArray.<TeamFeatureValue> -
TeamFeatureValue
-
The values correspond to entries in Feature. You may get different value according to your Dropbox Business plan.
Type:
- Object
Properties:
Name Type Argument Description upload_api_rate_limitTeamUploadApiRateLimitValue <optional>
Available if .tag is upload_api_rate_limit. has_team_shared_dropboxTeamHasTeamSharedDropboxValue <optional>
Available if .tag is has_team_shared_dropbox. has_team_file_eventsTeamHasTeamFileEventsValue <optional>
Available if .tag is has_team_file_events. has_team_selective_syncTeamHasTeamSelectiveSyncValue <optional>
Available if .tag is has_team_selective_sync. .tag'upload_api_rate_limit' | 'has_team_shared_dropbox' | 'has_team_file_events' | 'has_team_selective_sync' | 'other' Tag identifying the union variant. -
TeamGetActivityReport
-
Activity Report Result. Each of the items in the storage report is an array of values, one value per day. If there is no data for a day, then the value will be None.
Type:
- Object
Properties:
Name Type Description start_datestring First date present in the results as 'YYYY-MM-DD' or None. addsArray.<Object> Array of total number of adds by team members. editsArray.<Object> Array of number of edits by team members. If the same user edits the same file multiple times this is counted as a single edit. deletesArray.<Object> Array of total number of deletes by team members. active_users_28_dayArray.<Object> Array of the number of users who have been active in the last 28 days. active_users_7_dayArray.<Object> Array of the number of users who have been active in the last week. active_users_1_dayArray.<Object> Array of the number of users who have been active in the last day. active_shared_folders_28_dayArray.<Object> Array of the number of shared folders with some activity in the last 28 days. active_shared_folders_7_dayArray.<Object> Array of the number of shared folders with some activity in the last week. active_shared_folders_1_dayArray.<Object> Array of the number of shared folders with some activity in the last day. shared_links_createdArray.<Object> Array of the number of shared links created. shared_links_viewed_by_teamArray.<Object> Array of the number of views by team users to shared links created by the team. shared_links_viewed_by_outside_userArray.<Object> Array of the number of views by users outside of the team to shared links created by the team. shared_links_viewed_by_not_logged_inArray.<Object> Array of the number of views by non-logged-in users to shared links created by the team. shared_links_viewed_totalArray.<Object> Array of the total number of views to shared links created by the team. -
TeamGetDevicesReport
-
Devices Report Result. Contains subsections for different time ranges of activity. Each of the items in each subsection of the storage report is an array of values, one value per day. If there is no data for a day, then the value will be None.
Type:
- Object
Properties:
Name Type Description start_datestring First date present in the results as 'YYYY-MM-DD' or None. active_1_dayTeamDevicesActive Report of the number of devices active in the last day. active_7_dayTeamDevicesActive Report of the number of devices active in the last 7 days. active_28_dayTeamDevicesActive Report of the number of devices active in the last 28 days. -
TeamGetMembershipReport
-
Membership Report Result. Each of the items in the storage report is an array of values, one value per day. If there is no data for a day, then the value will be None.
Type:
- Object
Properties:
Name Type Description start_datestring First date present in the results as 'YYYY-MM-DD' or None. team_sizeArray.<Object> Team size, for each day. pending_invitesArray.<Object> The number of pending invites to the team, for each day. members_joinedArray.<Object> The number of members that joined the team, for each day. suspended_membersArray.<Object> The number of suspended team members, for each day. licensesArray.<Object> The total number of licenses the team has, for each day. -
TeamGetStorageReport
-
Storage Report Result. Each of the items in the storage report is an array of values, one value per day. If there is no data for a day, then the value will be None.
Type:
- Object
Properties:
Name Type Description start_datestring First date present in the results as 'YYYY-MM-DD' or None. total_usageArray.<Object> Sum of the shared, unshared, and datastore usages, for each day. shared_usageArray.<Object> Array of the combined size (bytes) of team members' shared folders, for each day. unshared_usageArray.<Object> Array of the combined size (bytes) of team members' root namespaces, for each day. shared_foldersArray.<Object> Array of the number of shared folders owned by team members, for each day. member_storage_mapArray.<Array.<TeamStorageBucket>> Array of storage summaries of team members' account sizes. Each storage summary is an array of key, value pairs, where each pair describes a storage bucket. The key indicates the upper bound of the bucket and the value is the number of users in that bucket. There is one such summary per day. If there is no data for a day, the storage summary will be empty. -
TeamGroupAccessType
-
Role of a user in group.
Type:
- Object
Properties:
Name Type Description .tag'member' | 'owner' Tag identifying the union variant. -
TeamGroupCreateArg
-
Type:
- Object
Properties:
Name Type Argument Description group_namestring Group name. add_creator_as_ownerboolean Automatically add the creator of the group. group_external_idstring <optional>
The creator of a team can associate an arbitrary external ID to the group. group_management_typeTeamCommonGroupManagementType <optional>
Whether the team can be managed by selected users, or only by team admins. -
TeamGroupCreateError
-
Type:
- Object
Properties:
Name Type Description .tag'group_name_already_used' | 'group_name_invalid' | 'external_id_already_in_use' | 'system_managed_group_disallowed' | 'other' Tag identifying the union variant. -
TeamGroupDeleteError
-
Type:
- Object
Properties:
Name Type Description .tag'group_not_found' | 'other' | 'system_managed_group_disallowed' | 'group_already_deleted' Tag identifying the union variant. -
TeamGroupFullInfo
-
Full description of a group.
Type:
- Object
Properties:
Name Type Argument Description group_namestring group_idstring group_management_typeTeamCommonGroupManagementType Who is allowed to manage the group. creatednumber The group creation time as a UTC timestamp in milliseconds since the Unix epoch. group_external_idstring <optional>
External ID of group. This is an arbitrary ID that an admin can attach to a group. member_countnumber <optional>
The number of members in the group. membersArray.<TeamGroupMemberInfo> <optional>
List of group members. -
TeamGroupMemberInfo
-
Profile of group member, and role in group.
Type:
- Object
Properties:
Name Type Description profileTeamMemberProfile Profile of group member. access_typeTeamGroupAccessType The role that the user has in the group. -
TeamGroupMembersAddArg
-
Type:
- Object
Properties:
Name Type Description groupTeamGroupSelector Group to which users will be added. membersArray.<TeamMemberAccess> List of users to be added to the group. return_membersboolean 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. -
TeamGroupMembersAddError
-
Type:
- Object
Properties:
Name Type Argument Description members_not_in_teamArray.<string> <optional>
Available if .tag is members_not_in_team. These members are not part of your team. Currently, you cannot add members to a group if they are not part of your team, though this may change in a subsequent version. To add new members to your Dropbox Business team, use the :route:`members/add` endpoint. users_not_foundArray.<string> <optional>
Available if .tag is users_not_found. These users were not found in Dropbox. user_cannot_be_manager_of_company_managed_groupArray.<string> <optional>
- Available if .tag is user_cannot_be_manager_of_company_managed_group. A company-managed group cannot be managed by a user. .tag'group_not_found' | 'other' | 'system_managed_group_disallowed' | 'duplicate_user' | 'group_not_in_team' | 'members_not_in_team' | 'users_not_found' | 'user_must_be_active_to_be_owner' | 'user_cannot_be_manager_of_company_managed_group' Tag identifying the union variant. -
TeamGroupMembersChangeResult
-
Result returned by groups/members/add and groups/members/remove.
Type:
- Object
Properties:
Name Type Description group_infoTeamGroupFullInfo The group info after member change operation has been performed. async_job_idstring For legacy purposes async_job_id will always return one space ' '. Formerly, it was an ID that was used to obtain the status of granting/revoking group-owned resources. It's no longer necessary because the async processing now happens automatically. -
TeamGroupMemberSelector
-
Argument for selecting a group and a single user.
Type:
- Object
Properties:
Name Type Description groupTeamGroupSelector Specify a group. userTeamUserSelectorArg Identity of a user that is a member of group. -
TeamGroupMemberSelectorError
-
Error that can be raised when GroupMemberSelector is used, and the user is required to be a member of the specified group.
Type:
- Object
Properties:
Name Type Description .tag'group_not_found' | 'other' | 'system_managed_group_disallowed' | 'member_not_in_group' Tag identifying the union variant. -
TeamGroupMemberSetAccessTypeError
-
Type:
- Object
Properties:
Name Type Description .tag'group_not_found' | 'other' | 'system_managed_group_disallowed' | 'member_not_in_group' | 'user_cannot_be_manager_of_company_managed_group' Tag identifying the union variant. -
TeamGroupMembersRemoveArg
-
Type:
- Object
Properties:
Name Type Description groupTeamGroupSelector Group from which users will be removed. usersArray.<TeamUserSelectorArg> List of users to be removed from the group. return_membersboolean 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. -
TeamGroupMembersRemoveError
-
Type:
- Object
Properties:
Name Type Argument Description members_not_in_teamArray.<string> <optional>
Available if .tag is members_not_in_team. These members are not part of your team. users_not_foundArray.<string> <optional>
Available if .tag is users_not_found. These users were not found in Dropbox. .tag'group_not_found' | 'other' | 'system_managed_group_disallowed' | 'member_not_in_group' | 'group_not_in_team' | 'members_not_in_team' | 'users_not_found' Tag identifying the union variant. -
TeamGroupMembersSelector
-
Argument for selecting a group and a list of users.
Type:
- Object
Properties:
Name Type Description groupTeamGroupSelector Specify a group. usersTeamUsersSelectorArg A list of users that are members of group. -
TeamGroupMembersSelectorError
-
Error that can be raised when GroupMembersSelector is used, and the users are required to be members of the specified group.
Type:
- Object
Properties:
Name Type Description .tag'group_not_found' | 'other' | 'system_managed_group_disallowed' | 'member_not_in_group' Tag identifying the union variant. -
TeamGroupMembersSetAccessTypeArg
-
Type:
- Object
Properties:
Name Type Description groupTeamGroupSelector Specify a group. userTeamUserSelectorArg Identity of a user that is a member of group. access_typeTeamGroupAccessType New group access type the user will have. return_membersboolean 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. -
TeamGroupSelector
-
Argument for selecting a single group, either by group_id or by external group ID.
Type:
- Object
Properties:
Name Type Argument Description group_idstring <optional>
Available if .tag is group_id. Group ID. group_external_idstring <optional>
Available if .tag is group_external_id. External ID of the group. .tag'group_id' | 'group_external_id' Tag identifying the union variant. -
TeamGroupSelectorError
-
Error that can be raised when GroupSelector is used.
Type:
- Object
Properties:
Name Type Description .tag'group_not_found' | 'other' Tag identifying the union variant. -
TeamGroupSelectorWithTeamGroupError
-
Error that can be raised when GroupSelector is used and team groups are disallowed from being used.
Type:
- Object
Properties:
Name Type Description .tag'group_not_found' | 'other' | 'system_managed_group_disallowed' Tag identifying the union variant. -
TeamGroupsGetInfoError
-
Type:
- Object
Properties:
Name Type Description .tag'group_not_on_team' | 'other' Tag identifying the union variant. -
TeamGroupsGetInfoItem
-
Type:
- Object
Properties:
Name Type Argument Description id_not_foundstring <optional>
Available if .tag is id_not_found. An ID that was provided as a parameter to :route:`groups/get_info`, and did not match a corresponding group. The ID can be a group ID, or an external ID, depending on how the method was called. group_infoTeamGroupFullInfo <optional>
Available if .tag is group_info. Info about a group. .tag'id_not_found' | 'group_info' Tag identifying the union variant. -
TeamGroupsListArg
-
Type:
- Object
Properties:
Name Type Description limitnumber Number of results to return per call. -
TeamGroupsListContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring Indicates from what point to get the next set of groups. -
TeamGroupsListContinueError
-
Type:
- Object
Properties:
Name Type Description .tag'invalid_cursor' | 'other' Tag identifying the union variant. -
TeamGroupsListResult
-
Type:
- Object
Properties:
Name Type Description groupsArray.<TeamCommonGroupSummary> cursorstring Pass the cursor into groups/list/continue to obtain the additional groups. has_moreboolean Is true if there are additional groups that have not been returned yet. An additional call to groups/list/continue can retrieve them. -
TeamGroupsMembersListArg
-
Type:
- Object
Properties:
Name Type Description groupTeamGroupSelector The group whose members are to be listed. limitnumber Number of results to return per call. -
TeamGroupsMembersListContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring Indicates from what point to get the next set of groups. -
TeamGroupsMembersListContinueError
-
Type:
- Object
Properties:
Name Type Description .tag'invalid_cursor' | 'other' Tag identifying the union variant. -
TeamGroupsMembersListResult
-
Type:
- Object
Properties:
Name Type Description membersArray.<TeamGroupMemberInfo> cursorstring Pass the cursor into groups/members/list/continue to obtain additional group members. has_moreboolean Is true if there are additional group members that have not been returned yet. An additional call to groups/members/list/continue can retrieve them. -
TeamGroupsPollError
-
Type:
- Object
Properties:
Name Type Description .tag'invalid_async_job_id' | 'internal_error' | 'other' | 'access_denied' Tag identifying the union variant. -
TeamGroupsSelector
-
Argument for selecting a list of groups, either by group_ids, or external group IDs.
Type:
- Object
Properties:
Name Type Argument Description group_idsArray.<Object> <optional>
Available if .tag is group_ids. List of group IDs. group_external_idsArray.<string> <optional>
Available if .tag is group_external_ids. List of external IDs of groups. .tag'group_ids' | 'group_external_ids' Tag identifying the union variant. -
TeamGroupUpdateArgs
-
Type:
- Object
Properties:
Name Type Argument Description groupTeamGroupSelector Specify a group. return_membersboolean 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. new_group_namestring <optional>
Optional argument. Set group name to this if provided. new_group_external_idstring <optional>
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. new_group_management_typeTeamCommonGroupManagementType <optional>
Set new group management type, if provided. -
TeamGroupUpdateError
-
Type:
- Object
Properties:
Name Type Description .tag'group_not_found' | 'other' | 'system_managed_group_disallowed' | 'group_name_already_used' | 'group_name_invalid' | 'external_id_already_in_use' Tag identifying the union variant. -
TeamHasTeamFileEventsValue
-
The value for Feature.has_team_file_events.
Type:
- Object
Properties:
Name Type Argument Description enabledboolean <optional>
Available if .tag is enabled. Does this team have file events. .tag'enabled' | 'other' Tag identifying the union variant. -
TeamHasTeamSelectiveSyncValue
-
The value for Feature.has_team_selective_sync.
Type:
- Object
Properties:
Name Type Argument Description has_team_selective_syncboolean <optional>
Available if .tag is has_team_selective_sync. Does this team have team selective sync enabled. .tag'has_team_selective_sync' | 'other' Tag identifying the union variant. -
The value for Feature.has_team_shared_dropbox.
Type:
- Object
Properties:
Name Type Argument Description has_team_shared_dropboxboolean <optional>
Available if .tag is has_team_shared_dropbox. Does this team have a shared team root. .tag'has_team_shared_dropbox' | 'other' Tag identifying the union variant. -
TeamIncludeMembersArg
-
Type:
- Object
Properties:
Name Type Description return_membersboolean 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. -
TeamLegalHoldHeldRevisionMetadata
-
Type:
- Object
Properties:
Name Type Description new_filenamestring The held revision filename. original_revision_idstring The id of the held revision. original_file_pathstring The original path of the held revision. server_modifiedTimestamp The last time the file was modified on Dropbox. author_member_idstring The member id of the revision's author. author_member_statusTeamTeamMemberStatus The member status of the revision's author. author_emailstring The email address of the held revision author. file_typestring The type of the held revision's file. sizenumber The file size in bytes. content_hashstring A hash of the file content. This field can be used to verify data integrity. For more information see our Content hash https://www.dropbox.com/developers/reference/content-hash page. -
TeamLegalHoldPolicy
-
Type:
- Object
Properties:
Name Type Argument Description idstring The legal hold id. namestring Policy name. membersTeamMembersInfo Team members IDs and number of permanently deleted members under hold. statusTeamLegalHoldStatus The current state of the hold. start_dateTimestamp Start date of the legal hold policy. descriptionstring <optional>
A description of the legal hold policy. activation_timeTimestamp <optional>
The time at which the legal hold was activated. end_dateTimestamp <optional>
End date of the legal hold policy. -
TeamLegalHoldsError
-
Type:
- Object
Properties:
Name Type Description .tag'unknown_legal_hold_error' | 'insufficient_permissions' | 'other' Tag identifying the union variant. -
TeamLegalHoldsGetPolicyArg
-
Type:
- Object
Properties:
Name Type Description idstring The legal hold Id. -
TeamLegalHoldsGetPolicyError
-
Type:
- Object
Properties:
Name Type Description .tag'unknown_legal_hold_error' | 'insufficient_permissions' | 'other' | 'legal_hold_policy_not_found' Tag identifying the union variant. -
TeamLegalHoldsListHeldRevisionResult
-
Type:
- Object
Properties:
Name Type Argument Description entriesArray.<TeamLegalHoldHeldRevisionMetadata> List of file entries that under the hold. has_moreboolean True if there are more file entries that haven't been returned. You can retrieve them with a call to /legal_holds/list_held_revisions_continue. cursorstring <optional>
The cursor idicates where to continue reading file metadata entries for the next API call. When there are no more entries, the cursor will return none. Pass the cursor into /2/team/legal_holds/list_held_revisions/continue. -
TeamLegalHoldsListHeldRevisionsArg
-
Type:
- Object
Properties:
Name Type Description idstring The legal hold Id. -
TeamLegalHoldsListHeldRevisionsContinueArg
-
Type:
- Object
Properties:
Name Type Argument Description idstring The legal hold Id. cursorstring <optional>
The cursor idicates where to continue reading file metadata entries for the next API call. When there are no more entries, the cursor will return none. -
TeamLegalHoldsListHeldRevisionsContinueError
-
Type:
- Object
Properties:
Name Type Description .tag'unknown_legal_hold_error' | 'transient_error' | 'reset' | 'other' Tag identifying the union variant. -
TeamLegalHoldsListHeldRevisionsError
-
Type:
- Object
Properties:
Name Type Description .tag'unknown_legal_hold_error' | 'insufficient_permissions' | 'other' | 'transient_error' | 'legal_hold_still_empty' | 'inactive_legal_hold' Tag identifying the union variant. -
TeamLegalHoldsListPoliciesArg
-
Type:
- Object
Properties:
Name Type Description include_releasedboolean Whether to return holds that were released. -
TeamLegalHoldsListPoliciesError
-
Type:
- Object
Properties:
Name Type Description .tag'unknown_legal_hold_error' | 'insufficient_permissions' | 'other' | 'transient_error' Tag identifying the union variant. -
TeamLegalHoldsListPoliciesResult
-
Type:
- Object
Properties:
Name Type Description policiesArray.<TeamLegalHoldPolicy> -
TeamLegalHoldsPolicyCreateArg
-
Type:
- Object
Properties:
Name Type Argument Description namestring Policy name. membersArray.<Object> List of team member IDs added to the hold. descriptionstring <optional>
A description of the legal hold policy. start_dateTimestamp <optional>
start date of the legal hold policy. end_dateTimestamp <optional>
end date of the legal hold policy. -
TeamLegalHoldsPolicyCreateError
-
Type:
- Object
Properties:
Name Type Description .tag'unknown_legal_hold_error' | 'insufficient_permissions' | 'other' | 'start_date_is_later_than_end_date' | 'empty_members_list' | 'invalid_members' | 'number_of_users_on_hold_is_greater_than_hold_limitation' | 'transient_error' | 'name_must_be_unique' | 'team_exceeded_legal_hold_quota' | 'invalid_date' Tag identifying the union variant. -
TeamLegalHoldsPolicyReleaseArg
-
Type:
- Object
Properties:
Name Type Description idstring The legal hold Id. -
TeamLegalHoldsPolicyReleaseError
-
Type:
- Object
Properties:
Name Type Description .tag'unknown_legal_hold_error' | 'insufficient_permissions' | 'other' | 'legal_hold_performing_another_operation' | 'legal_hold_already_releasing' | 'legal_hold_policy_not_found' Tag identifying the union variant. -
TeamLegalHoldsPolicyUpdateArg
-
Type:
- Object
Properties:
Name Type Argument Description idstring The legal hold Id. namestring <optional>
Policy new name. descriptionstring <optional>
Policy new description. membersArray.<Object> <optional>
List of team member IDs to apply the policy on. -
TeamLegalHoldsPolicyUpdateError
-
Type:
- Object
Properties:
Name Type Description .tag'unknown_legal_hold_error' | 'insufficient_permissions' | 'other' | 'transient_error' | 'inactive_legal_hold' | 'legal_hold_performing_another_operation' | 'invalid_members' | 'number_of_users_on_hold_is_greater_than_hold_limitation' | 'empty_members_list' | 'name_must_be_unique' | 'legal_hold_policy_not_found' Tag identifying the union variant. -
TeamLegalHoldStatus
-
Type:
- Object
Properties:
Name Type Description .tag'active' | 'released' | 'activating' | 'updating' | 'exporting' | 'releasing' | 'other' Tag identifying the union variant. -
TeamListMemberAppsArg
-
Type:
- Object
Properties:
Name Type Description team_member_idstring The team member id. -
TeamListMemberAppsError
-
Error returned by linked_apps/list_member_linked_apps.
Type:
- Object
Properties:
Name Type Description .tag'member_not_found' | 'other' Tag identifying the union variant. -
TeamListMemberAppsResult
-
Type:
- Object
Properties:
Name Type Description linked_api_appsArray.<TeamApiApp> List of third party applications linked by this team member. -
TeamListMemberDevicesArg
-
Type:
- Object
Properties:
Name Type Description team_member_idstring The team's member id. include_web_sessionsboolean Whether to list web sessions of the team's member. include_desktop_clientsboolean Whether to list linked desktop devices of the team's member. include_mobile_clientsboolean Whether to list linked mobile devices of the team's member. -
TeamListMemberDevicesError
-
Type:
- Object
Properties:
Name Type Description .tag'member_not_found' | 'other' Tag identifying the union variant. -
TeamListMemberDevicesResult
-
Type:
- Object
Properties:
Name Type Argument Description active_web_sessionsArray.<TeamActiveWebSession> <optional>
List of web sessions made by this team member. desktop_client_sessionsArray.<TeamDesktopClientSession> <optional>
List of desktop clients used by this team member. mobile_client_sessionsArray.<TeamMobileClientSession> <optional>
List of mobile client used by this team member. -
TeamListMembersAppsArg
-
Arguments for linked_apps/list_members_linked_apps.
Type:
- Object
Properties:
Name Type Argument Description cursorstring <optional>
At the first call to the 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. -
TeamListMembersAppsError
-
Error returned by linked_apps/list_members_linked_apps.
Type:
- Object
Properties:
Name Type Description .tag'reset' | 'other' Tag identifying the union variant. -
TeamListMembersAppsResult
-
Information returned by linked_apps/list_members_linked_apps.
Type:
- Object
Properties:
Name Type Argument Description appsArray.<TeamMemberLinkedApps> The linked applications of each member of the team. has_moreboolean If true, then there are more apps available. Pass the cursor to linked_apps/list_members_linked_apps to retrieve the rest. cursorstring <optional>
Pass the cursor into linked_apps/list_members_linked_apps to receive the next sub list of team's applications. -
TeamListMembersDevicesArg
-
Type:
- Object
Properties:
Name Type Argument Description cursorstring <optional>
At the first call to the 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. include_web_sessionsboolean Whether to list web sessions of the team members. include_desktop_clientsboolean Whether to list desktop clients of the team members. include_mobile_clientsboolean Whether to list mobile clients of the team members. -
TeamListMembersDevicesError
-
Type:
- Object
Properties:
Name Type Description .tag'reset' | 'other' Tag identifying the union variant. -
TeamListMembersDevicesResult
-
Type:
- Object
Properties:
Name Type Argument Description devicesArray.<TeamMemberDevices> The devices of each member of the team. has_moreboolean If true, then there are more devices available. Pass the cursor to devices/list_members_devices to retrieve the rest. cursorstring <optional>
Pass the cursor into devices/list_members_devices to receive the next sub list of team's devices. -
TeamListTeamAppsArg
-
Arguments for linked_apps/list_team_linked_apps.
Type:
- Object
Properties:
Name Type Argument Description cursorstring <optional>
At the first call to the 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. -
TeamListTeamAppsError
-
Error returned by linked_apps/list_team_linked_apps.
Type:
- Object
Properties:
Name Type Description .tag'reset' | 'other' Tag identifying the union variant. -
TeamListTeamAppsResult
-
Information returned by linked_apps/list_team_linked_apps.
Type:
- Object
Properties:
Name Type Argument Description appsArray.<TeamMemberLinkedApps> The linked applications of each member of the team. has_moreboolean If true, then there are more apps available. Pass the cursor to linked_apps/list_team_linked_apps to retrieve the rest. cursorstring <optional>
Pass the cursor into linked_apps/list_team_linked_apps to receive the next sub list of team's applications. -
TeamListTeamDevicesArg
-
Type:
- Object
Properties:
Name Type Argument Description cursorstring <optional>
At the first call to the 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. include_web_sessionsboolean Whether to list web sessions of the team members. include_desktop_clientsboolean Whether to list desktop clients of the team members. include_mobile_clientsboolean Whether to list mobile clients of the team members. -
TeamListTeamDevicesError
-
Type:
- Object
Properties:
Name Type Description .tag'reset' | 'other' Tag identifying the union variant. -
TeamListTeamDevicesResult
-
Type:
- Object
Properties:
Name Type Argument Description devicesArray.<TeamMemberDevices> The devices of each member of the team. has_moreboolean If true, then there are more devices available. Pass the cursor to devices/list_team_devices to retrieve the rest. cursorstring <optional>
Pass the cursor into devices/list_team_devices to receive the next sub list of team's devices. -
TeamLogAccessMethodLogInfo
-
Indicates the method in which the action was performed.
Type:
- Object
Properties:
Name Type Argument Description admin_consoleTeamLogWebSessionLogInfo <optional>
Available if .tag is admin_console. Admin console session details. apiTeamLogApiSessionLogInfo <optional>
Available if .tag is api. Api session details. content_managerTeamLogWebSessionLogInfo <optional>
Available if .tag is content_manager. Content manager session details. end_userTeamLogWebSessionLogInfo | TeamLogDesktopSessionLogInfo | TeamLogMobileSessionLogInfo | TeamLogSessionLogInfo <optional>
Available if .tag is end_user. End user session details. enterprise_consoleTeamLogWebSessionLogInfo <optional>
Available if .tag is enterprise_console. Enterprise console session details. sign_in_asTeamLogWebSessionLogInfo <optional>
Available if .tag is sign_in_as. Sign in as session details. .tag'admin_console' | 'api' | 'content_manager' | 'end_user' | 'enterprise_console' | 'sign_in_as' | 'other' Tag identifying the union variant. -
TeamLogAccountCaptureAvailability
-
Type:
- Object
Properties:
Name Type Description .tag'available' | 'unavailable' | 'other' Tag identifying the union variant. -
TeamLogAccountCaptureChangeAvailabilityDetails
-
Granted/revoked option to enable account capture on team domains.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogAccountCaptureAvailability New account capture availabilty value. previous_valueTeamLogAccountCaptureAvailability <optional>
Previous account capture availabilty value. Might be missing due to historical data gap. -
TeamLogAccountCaptureChangeAvailabilityType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAccountCaptureChangePolicyDetails
-
Changed account capture setting on team domain.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogAccountCapturePolicy New account capture policy. previous_valueTeamLogAccountCapturePolicy <optional>
Previous account capture policy. Might be missing due to historical data gap. -
TeamLogAccountCaptureChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAccountCaptureMigrateAccountDetails
-
Account-captured user migrated account to team.
Type:
- Object
Properties:
Name Type Description domain_namestring Domain name. -
TeamLogAccountCaptureMigrateAccountType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAccountCaptureNotificationEmailsSentDetails
-
Sent account capture email to all unmanaged members.
Type:
- Object
Properties:
Name Type Argument Description domain_namestring Domain name. notification_typeTeamLogAccountCaptureNotificationType <optional>
Account-capture email notification type. -
TeamLogAccountCaptureNotificationEmailsSentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAccountCaptureNotificationType
-
Type:
- Object
Properties:
Name Type Description .tag'actionable_notification' | 'proactive_warning_notification' | 'other' Tag identifying the union variant. -
TeamLogAccountCapturePolicy
-
Type:
- Object
Properties:
Name Type Description .tag'all_users' | 'disabled' | 'invited_users' | 'other' Tag identifying the union variant. -
TeamLogAccountCaptureRelinquishAccountDetails
-
Account-captured user changed account email to personal email.
Type:
- Object
Properties:
Name Type Description domain_namestring Domain name. -
TeamLogAccountCaptureRelinquishAccountType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAccountLockOrUnlockedDetails
-
Unlocked/locked account after failed sign in attempts.
Type:
- Object
Properties:
Name Type Description previous_valueTeamLogAccountState The previous account status. new_valueTeamLogAccountState The new account status. -
TeamLogAccountLockOrUnlockedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAccountState
-
Type:
- Object
Properties:
Name Type Description .tag'locked' | 'unlocked' | 'other' Tag identifying the union variant. -
TeamLogActionDetails
-
Additional information indicating the action taken that caused status change.
Type:
- Object
Properties:
Name Type Argument Description remove_actionTeamLogMemberRemoveActionType <optional>
Available if .tag is remove_action. Define how the user was removed from the team. team_invite_detailsTeamLogTeamInviteDetails <optional>
Available if .tag is team_invite_details. Additional information relevant when someone is invited to the team. team_join_detailsTeamLogJoinTeamDetails <optional>
Available if .tag is team_join_details. Additional information relevant when a new member joins the team. .tag'remove_action' | 'team_invite_details' | 'team_join_details' | 'other' Tag identifying the union variant. -
TeamLogActorLogInfo
-
The entity who performed the action.
Type:
- Object
Properties:
Name Type Argument Description adminTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
Available if .tag is admin. The admin who did the action. appTeamLogUserOrTeamLinkedAppLogInfo | TeamLogUserLinkedAppLogInfo | TeamLogTeamLinkedAppLogInfo | TeamLogAppLogInfo <optional>
Available if .tag is app. The application who did the action. resellerTeamLogResellerLogInfo <optional>
Available if .tag is reseller. Action done by reseller. userTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
Available if .tag is user. The user who did the action. .tag'admin' | 'anonymous' | 'app' | 'dropbox' | 'reseller' | 'user' | 'other' Tag identifying the union variant. -
TeamLogAdminAlertCategoryEnum
-
Alert category
Type:
- Object
Properties:
Name Type Description .tag'account_takeover' | 'data_loss_protection' | 'information_governance' | 'malware_sharing' | 'massive_file_operation' | 'na' | 'threat_management' | 'other' Tag identifying the union variant. -
TeamLogAdminAlertGeneralStateEnum
-
Alert state
Type:
- Object
Properties:
Name Type Description .tag'active' | 'dismissed' | 'in_progress' | 'na' | 'resolved' | 'other' Tag identifying the union variant. -
TeamLogAdminAlertingAlertConfiguration
-
Alert configurations
Type:
- Object
Properties:
Name Type Argument Description alert_stateTeamLogAdminAlertingAlertStatePolicy <optional>
Alert state. sensitivity_levelTeamLogAdminAlertingAlertSensitivity <optional>
Sensitivity level. recipients_settingsTeamLogRecipientsConfiguration <optional>
Recipient settings. textstring <optional>
Text. excluded_file_extensionsstring <optional>
Excluded file extensions. -
TeamLogAdminAlertingAlertSensitivity
-
Alert sensitivity
Type:
- Object
Properties:
Name Type Description .tag'high' | 'highest' | 'invalid' | 'low' | 'lowest' | 'medium' | 'other' Tag identifying the union variant. -
TeamLogAdminAlertingAlertStateChangedDetails
-
Changed an alert state.
Type:
- Object
Properties:
Name Type Description alert_namestring Alert name. alert_severityTeamLogAdminAlertSeverityEnum Alert severity. alert_categoryTeamLogAdminAlertCategoryEnum Alert category. alert_instance_idstring Alert ID. previous_valueTeamLogAdminAlertGeneralStateEnum Alert state before the change. new_valueTeamLogAdminAlertGeneralStateEnum Alert state after the change. -
TeamLogAdminAlertingAlertStateChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAdminAlertingAlertStatePolicy
-
Policy for controlling whether an alert can be triggered or not
Type:
- Object
Properties:
Name Type Description .tag'off' | 'on' | 'other' Tag identifying the union variant. -
TeamLogAdminAlertingChangedAlertConfigDetails
-
Changed an alert setting.
Type:
- Object
Properties:
Name Type Description alert_namestring Alert Name. previous_alert_configTeamLogAdminAlertingAlertConfiguration Previous alert configuration. new_alert_configTeamLogAdminAlertingAlertConfiguration New alert configuration. -
TeamLogAdminAlertingChangedAlertConfigType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAdminAlertingTriggeredAlertDetails
-
Triggered security alert.
Type:
- Object
Properties:
Name Type Description alert_namestring Alert name. alert_severityTeamLogAdminAlertSeverityEnum Alert severity. alert_categoryTeamLogAdminAlertCategoryEnum Alert category. alert_instance_idstring Alert ID. -
TeamLogAdminAlertingTriggeredAlertType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAdminAlertSeverityEnum
-
Alert severity
Type:
- Object
Properties:
Name Type Description .tag'high' | 'info' | 'low' | 'medium' | 'na' | 'other' Tag identifying the union variant. -
TeamLogAdminConsoleAppPermission
-
Type:
- Object
Properties:
Name Type Description .tag'default_for_listed_apps' | 'default_for_unlisted_apps' | 'other' Tag identifying the union variant. -
TeamLogAdminConsoleAppPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'allow' | 'block' | 'default' | 'other' Tag identifying the union variant. -
TeamLogAdminEmailRemindersChangedDetails
-
Changed admin reminder settings for requests to join the team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogAdminEmailRemindersPolicy To. previous_valueTeamLogAdminEmailRemindersPolicy From. -
TeamLogAdminEmailRemindersChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAdminEmailRemindersPolicy
-
Policy for deciding whether team admins receive reminder emails for requests to join the team
Type:
- Object
Properties:
Name Type Description .tag'default' | 'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogAdminRole
-
Type:
- Object
Properties:
Name Type Description .tag'billing_admin' | 'compliance_admin' | 'content_admin' | 'limited_admin' | 'member_only' | 'reporting_admin' | 'security_admin' | 'support_admin' | 'team_admin' | 'user_management_admin' | 'other' Tag identifying the union variant. -
TeamLogAlertRecipientsSettingType
-
Alert recipients setting type
Type:
- Object
Properties:
Name Type Description .tag'custom_list' | 'invalid' | 'none' | 'team_admins' | 'other' Tag identifying the union variant. -
TeamLogAllowDownloadDisabledDetails
-
Disabled downloads.
Type:
- Object
-
TeamLogAllowDownloadDisabledType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAllowDownloadEnabledDetails
-
Enabled downloads.
Type:
- Object
-
TeamLogAllowDownloadEnabledType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogApiSessionLogInfo
-
Api session.
Type:
- Object
Properties:
Name Type Description request_idstring Api request ID. -
TeamLogAppBlockedByPermissionsDetails
-
Failed to connect app for member.
Type:
- Object
Properties:
Name Type Description app_infoTeamLogUserOrTeamLinkedAppLogInfo | TeamLogUserLinkedAppLogInfo | TeamLogTeamLinkedAppLogInfo | TeamLogAppLogInfo Relevant application details. -
TeamLogAppBlockedByPermissionsType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAppLinkTeamDetails
-
Linked app for team.
Type:
- Object
Properties:
Name Type Description app_infoTeamLogUserOrTeamLinkedAppLogInfo | TeamLogUserLinkedAppLogInfo | TeamLogTeamLinkedAppLogInfo | TeamLogAppLogInfo Relevant application details. -
TeamLogAppLinkTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAppLinkUserDetails
-
Linked app for member.
Type:
- Object
Properties:
Name Type Description app_infoTeamLogUserOrTeamLinkedAppLogInfo | TeamLogUserLinkedAppLogInfo | TeamLogTeamLinkedAppLogInfo | TeamLogAppLogInfo Relevant application details. -
TeamLogAppLinkUserType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAppLogInfo
-
App's logged information.
Type:
- Object
Properties:
Name Type Argument Description .tag"user_or_team_linked_app" | "user_linked_app" | "team_linked_app" - Tag identifying the subtype variant. app_idstring <optional>
App unique ID. display_namestring <optional>
App display name. -
TeamLogApplyNamingConventionDetails
-
Applied naming convention.
Type:
- Object
-
TeamLogApplyNamingConventionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAppPermissionsChangedDetails
-
Changed app permissions.
Type:
- Object
Properties:
Name Type Argument Description previous_valueTeamLogAdminConsoleAppPolicy Previous policy. new_valueTeamLogAdminConsoleAppPolicy New policy. app_namestring <optional>
Name of the app. permissionTeamLogAdminConsoleAppPermission <optional>
Permission that was changed. -
TeamLogAppPermissionsChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAppUnlinkTeamDetails
-
Unlinked app for team.
Type:
- Object
Properties:
Name Type Description app_infoTeamLogUserOrTeamLinkedAppLogInfo | TeamLogUserLinkedAppLogInfo | TeamLogTeamLinkedAppLogInfo | TeamLogAppLogInfo Relevant application details. -
TeamLogAppUnlinkTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAppUnlinkUserDetails
-
Unlinked app for member.
Type:
- Object
Properties:
Name Type Description app_infoTeamLogUserOrTeamLinkedAppLogInfo | TeamLogUserLinkedAppLogInfo | TeamLogTeamLinkedAppLogInfo | TeamLogAppLogInfo Relevant application details. -
TeamLogAppUnlinkUserType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogAssetLogInfo
-
Asset details.
Type:
- Object
Properties:
Name Type Argument Description fileTeamLogFileLogInfo <optional>
Available if .tag is file. File's details. folderTeamLogFolderLogInfo <optional>
Available if .tag is folder. Folder's details. paper_documentTeamLogPaperDocumentLogInfo <optional>
Available if .tag is paper_document. Paper document's details. paper_folderTeamLogPaperFolderLogInfo <optional>
Available if .tag is paper_folder. Paper folder's details. showcase_documentTeamLogShowcaseDocumentLogInfo <optional>
Available if .tag is showcase_document. Showcase document's details. .tag'file' | 'folder' | 'paper_document' | 'paper_folder' | 'showcase_document' | 'other' Tag identifying the union variant. -
TeamLogBackupStatus
-
Backup status
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogBinderAddPageDetails
-
Added Binder page.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. doc_titlestring Title of the Binder doc. binder_item_namestring Name of the Binder page/section. -
TeamLogBinderAddPageType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogBinderAddSectionDetails
-
Added Binder section.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. doc_titlestring Title of the Binder doc. binder_item_namestring Name of the Binder page/section. -
TeamLogBinderAddSectionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogBinderRemovePageDetails
-
Removed Binder page.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. doc_titlestring Title of the Binder doc. binder_item_namestring Name of the Binder page/section. -
TeamLogBinderRemovePageType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogBinderRemoveSectionDetails
-
Removed Binder section.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. doc_titlestring Title of the Binder doc. binder_item_namestring Name of the Binder page/section. -
TeamLogBinderRemoveSectionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogBinderRenamePageDetails
-
Renamed Binder page.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. doc_titlestring Title of the Binder doc. binder_item_namestring Name of the Binder page/section. previous_binder_item_namestring <optional>
Previous name of the Binder page/section. -
TeamLogBinderRenamePageType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogBinderRenameSectionDetails
-
Renamed Binder section.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. doc_titlestring Title of the Binder doc. binder_item_namestring Name of the Binder page/section. previous_binder_item_namestring <optional>
Previous name of the Binder page/section. -
TeamLogBinderRenameSectionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogBinderReorderPageDetails
-
Reordered Binder page.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. doc_titlestring Title of the Binder doc. binder_item_namestring Name of the Binder page/section. -
TeamLogBinderReorderPageType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogBinderReorderSectionDetails
-
Reordered Binder section.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. doc_titlestring Title of the Binder doc. binder_item_namestring Name of the Binder page/section. -
TeamLogBinderReorderSectionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogCameraUploadsPolicy
-
Policy for controlling if team members can activate camera uploads
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogCameraUploadsPolicyChangedDetails
-
Changed camera uploads setting for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogCameraUploadsPolicy New camera uploads setting. previous_valueTeamLogCameraUploadsPolicy Previous camera uploads setting. -
TeamLogCameraUploadsPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogCaptureTranscriptPolicy
-
Policy for deciding whether team users can transcription in Capture
Type:
- Object
Properties:
Name Type Description .tag'default' | 'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogCaptureTranscriptPolicyChangedDetails
-
Changed Capture transcription policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogCaptureTranscriptPolicy To. previous_valueTeamLogCaptureTranscriptPolicy From. -
TeamLogCaptureTranscriptPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogCertificate
-
Certificate details.
Type:
- Object
Properties:
Name Type Argument Description subjectstring Certificate subject. issuerstring Certificate issuer. issue_datestring Certificate issue date. expiration_datestring Certificate expiration date. serial_numberstring Certificate serial number. sha1_fingerprintstring Certificate sha1 fingerprint. common_namestring <optional>
Certificate common name. -
TeamLogChangedEnterpriseAdminRoleDetails
-
Changed enterprise admin role.
Type:
- Object
Properties:
Name Type Description previous_valueTeamLogFedAdminRole The member’s previous enterprise admin role. new_valueTeamLogFedAdminRole The member’s new enterprise admin role. team_namestring The name of the member’s team. -
TeamLogChangedEnterpriseAdminRoleType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogChangedEnterpriseConnectedTeamStatusDetails
-
Changed enterprise-connected team status.
Type:
- Object
Properties:
Name Type Description actionTeamLogFedHandshakeAction The preformed change in the team’s connection status. additional_infoTeamLogFederationStatusChangeAdditionalInfo Additional information about the organization or team. previous_valueTeamLogTrustedTeamsRequestState Previous request state. new_valueTeamLogTrustedTeamsRequestState New request state. -
TeamLogChangedEnterpriseConnectedTeamStatusType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogChangeLinkExpirationPolicy
-
Policy for deciding whether the team's default expiration days policy must be enforced when an externally shared link is updated
Type:
- Object
Properties:
Name Type Description .tag'allowed' | 'not_allowed' | 'other' Tag identifying the union variant. -
TeamLogClassificationChangePolicyDetails
-
Changed classification policy for team.
Type:
- Object
Properties:
Name Type Description previous_valueTeamLogClassificationPolicyEnumWrapper Previous classification policy. new_valueTeamLogClassificationPolicyEnumWrapper New classification policy. classification_typeTeamLogClassificationType Policy type. -
TeamLogClassificationChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogClassificationCreateReportDetails
-
Created Classification report.
Type:
- Object
-
TeamLogClassificationCreateReportFailDetails
-
Couldn't create Classification report.
Type:
- Object
Properties:
Name Type Description failure_reasonTeamTeamReportFailureReason Failure reason. -
TeamLogClassificationCreateReportFailType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogClassificationCreateReportType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogClassificationPolicyEnumWrapper
-
Policy for controlling team access to the classification feature
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'member_and_team_folders' | 'team_folders' | 'other' Tag identifying the union variant. -
TeamLogClassificationType
-
The type of classification (currently only personal information)
Type:
- Object
Properties:
Name Type Description .tag'personal_information' | 'pii' | 'other' Tag identifying the union variant. -
Shared album.
Type:
- Object
Properties:
Name Type Description album_namestring Album name. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogComputerBackupPolicy
-
Policy for controlling team access to computer backup feature
Type:
- Object
Properties:
Name Type Description .tag'default' | 'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogComputerBackupPolicyChangedDetails
-
Changed computer backup policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogComputerBackupPolicy New computer backup policy. previous_valueTeamLogComputerBackupPolicy Previous computer backup policy. -
TeamLogComputerBackupPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogConnectedTeamName
-
The name of the team
Type:
- Object
Properties:
Name Type Description teamstring The name of the team. -
TeamLogContentAdministrationPolicyChangedDetails
-
Changed content management setting.
Type:
- Object
Properties:
Name Type Description new_valuestring New content administration policy. previous_valuestring Previous content administration policy. -
TeamLogContentAdministrationPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogContentPermanentDeletePolicy
-
Policy for pemanent content deletion
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogContextLogInfo
-
The primary entity on which the action was done.
Type:
- Object
Properties:
Name Type Argument Description non_team_memberTeamLogNonTeamMemberLogInfo <optional>
Available if .tag is non_team_member. Action was done on behalf of a non team member. organization_teamTeamLogTeamLogInfo <optional>
Available if .tag is organization_team. Action was done on behalf of a team that's part of an organization. team_memberTeamLogTeamMemberLogInfo <optional>
Available if .tag is team_member. Action was done on behalf of a team member. trusted_non_team_memberTeamLogTrustedNonTeamMemberLogInfo <optional>
Available if .tag is trusted_non_team_member. Action was done on behalf of a trusted non team member. .tag'anonymous' | 'non_team_member' | 'organization_team' | 'team' | 'team_member' | 'trusted_non_team_member' | 'other' Tag identifying the union variant. -
TeamLogCreateFolderDetails
-
Created folders.
Type:
- Object
-
TeamLogCreateFolderType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogCreateTeamInviteLinkDetails
-
Created team invite link.
Type:
- Object
Properties:
Name Type Description link_urlstring The invite link url that was created. expiry_datestring The expiration date of the invite link. -
TeamLogCreateTeamInviteLinkType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDataPlacementRestrictionChangePolicyDetails
-
Set restrictions on data center locations where team data resides.
Type:
- Object
Properties:
Name Type Description previous_valueTeamLogPlacementRestriction Previous placement restriction. new_valueTeamLogPlacementRestriction New placement restriction. -
TeamLogDataPlacementRestrictionChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDataPlacementRestrictionSatisfyPolicyDetails
-
Completed restrictions on data center locations where team data resides.
Type:
- Object
Properties:
Name Type Description placement_restrictionTeamLogPlacementRestriction Placement restriction. -
TeamLogDataPlacementRestrictionSatisfyPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDataResidencyMigrationRequestSuccessfulDetails
-
Requested data residency migration for team data.
Type:
- Object
-
TeamLogDataResidencyMigrationRequestSuccessfulType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDataResidencyMigrationRequestUnsuccessfulDetails
-
Request for data residency migration for team data has failed.
Type:
- Object
-
TeamLogDataResidencyMigrationRequestUnsuccessfulType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDefaultLinkExpirationDaysPolicy
-
Policy for the default number of days until an externally shared link expires
Type:
- Object
Properties:
Name Type Description .tag'day_1' | 'day_180' | 'day_3' | 'day_30' | 'day_7' | 'day_90' | 'none' | 'year_1' | 'other' Tag identifying the union variant. -
TeamLogDeleteTeamInviteLinkDetails
-
Deleted team invite link.
Type:
- Object
Properties:
Name Type Description link_urlstring The invite link url that was deleted. -
TeamLogDeleteTeamInviteLinkType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDesktopDeviceSessionLogInfo
-
Information about linked Dropbox desktop client sessions
Type:
- Object
Properties:
Name Type Argument Description .tag'desktop_device_session' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. host_namestring Name of the hosting desktop. client_typeTeamDesktopPlatform The Dropbox desktop client type. platformstring Information on the hosting platform. is_delete_on_unlink_supportedboolean Whether itu2019s possible to delete all of the account files upon unlinking. ip_addressstring <optional>
The IP address of the last activity from this session. createdTimestamp <optional>
The time this session was created. updatedTimestamp <optional>
The time of the last activity from this session. session_infoTeamLogDesktopSessionLogInfo <optional>
Desktop session unique id. client_versionstring <optional>
The Dropbox client version. -
TeamLogDesktopSessionLogInfo
-
Desktop session.
Type:
- Object
Properties:
Name Type Argument Description .tag'desktop' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. session_idstring <optional>
Session ID. -
TeamLogDeviceApprovalsAddExceptionDetails
-
Added members to device approvals exception list.
Type:
- Object
-
TeamLogDeviceApprovalsAddExceptionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceApprovalsChangeDesktopPolicyDetails
-
Set/removed limit on number of computers member can link to team Dropbox account.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogDeviceApprovalsPolicy <optional>
New desktop device approvals policy. Might be missing due to historical data gap. previous_valueTeamLogDeviceApprovalsPolicy <optional>
Previous desktop device approvals policy. Might be missing due to historical data gap. -
TeamLogDeviceApprovalsChangeDesktopPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceApprovalsChangeMobilePolicyDetails
-
Set/removed limit on number of mobile devices member can link to team Dropbox account.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogDeviceApprovalsPolicy <optional>
New mobile device approvals policy. Might be missing due to historical data gap. previous_valueTeamLogDeviceApprovalsPolicy <optional>
Previous mobile device approvals policy. Might be missing due to historical data gap. -
TeamLogDeviceApprovalsChangeMobilePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceApprovalsChangeOverageActionDetails
-
Changed device approvals setting when member is over limit.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamPoliciesRolloutMethod <optional>
New over the limits policy. Might be missing due to historical data gap. previous_valueTeamPoliciesRolloutMethod <optional>
Previous over the limit policy. Might be missing due to historical data gap. -
TeamLogDeviceApprovalsChangeOverageActionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceApprovalsChangeUnlinkActionDetails
-
Changed device approvals setting when member unlinks approved device.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogDeviceUnlinkPolicy <optional>
New device unlink policy. Might be missing due to historical data gap. previous_valueTeamLogDeviceUnlinkPolicy <optional>
Previous device unlink policy. Might be missing due to historical data gap. -
TeamLogDeviceApprovalsChangeUnlinkActionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceApprovalsPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'limited' | 'unlimited' | 'other' Tag identifying the union variant. -
TeamLogDeviceApprovalsRemoveExceptionDetails
-
Removed members from device approvals exception list.
Type:
- Object
-
TeamLogDeviceApprovalsRemoveExceptionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceChangeIpDesktopDetails
-
Changed IP address associated with active desktop session.
Type:
- Object
Properties:
Name Type Description device_session_infoTeamLogDesktopDeviceSessionLogInfo | TeamLogMobileDeviceSessionLogInfo | TeamLogWebDeviceSessionLogInfo | TeamLogLegacyDeviceSessionLogInfo | TeamLogDeviceSessionLogInfo Device's session logged information. -
TeamLogDeviceChangeIpDesktopType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceChangeIpMobileDetails
-
Changed IP address associated with active mobile session.
Type:
- Object
Properties:
Name Type Argument Description device_session_infoTeamLogDesktopDeviceSessionLogInfo | TeamLogMobileDeviceSessionLogInfo | TeamLogWebDeviceSessionLogInfo | TeamLogLegacyDeviceSessionLogInfo | TeamLogDeviceSessionLogInfo <optional>
Device's session logged information. -
TeamLogDeviceChangeIpMobileType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceChangeIpWebDetails
-
Changed IP address associated with active web session.
Type:
- Object
Properties:
Name Type Description user_agentstring Web browser name. -
TeamLogDeviceChangeIpWebType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceDeleteOnUnlinkFailDetails
-
Failed to delete all files from unlinked device.
Type:
- Object
Properties:
Name Type Argument Description num_failuresnumber The number of times that remote file deletion failed. session_infoTeamLogWebSessionLogInfo | TeamLogDesktopSessionLogInfo | TeamLogMobileSessionLogInfo | TeamLogSessionLogInfo <optional>
Session unique id. display_namestring <optional>
The device name. Might be missing due to historical data gap. -
TeamLogDeviceDeleteOnUnlinkFailType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceDeleteOnUnlinkSuccessDetails
-
Deleted all files from unlinked device.
Type:
- Object
Properties:
Name Type Argument Description session_infoTeamLogWebSessionLogInfo | TeamLogDesktopSessionLogInfo | TeamLogMobileSessionLogInfo | TeamLogSessionLogInfo <optional>
Session unique id. display_namestring <optional>
The device name. Might be missing due to historical data gap. -
TeamLogDeviceDeleteOnUnlinkSuccessType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceLinkFailDetails
-
Failed to link device.
Type:
- Object
Properties:
Name Type Argument Description device_typeTeamLogDeviceType A description of the device used while user approval blocked. ip_addressstring <optional>
IP address. Might be missing due to historical data gap. -
TeamLogDeviceLinkFailType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceLinkSuccessDetails
-
Linked device.
Type:
- Object
Properties:
Name Type Argument Description device_session_infoTeamLogDesktopDeviceSessionLogInfo | TeamLogMobileDeviceSessionLogInfo | TeamLogWebDeviceSessionLogInfo | TeamLogLegacyDeviceSessionLogInfo | TeamLogDeviceSessionLogInfo <optional>
Device's session logged information. -
TeamLogDeviceLinkSuccessType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceManagementDisabledDetails
-
Disabled device management.
Type:
- Object
-
TeamLogDeviceManagementDisabledType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceManagementEnabledDetails
-
Enabled device management.
Type:
- Object
-
TeamLogDeviceManagementEnabledType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceSessionLogInfo
-
Device's session logged information.
Type:
- Object
Properties:
Name Type Argument Description .tag"desktop_device_session" | "mobile_device_session" | "web_device_session" | "legacy_device_session" Tag identifying the subtype variant. ip_addressstring <optional>
The IP address of the last activity from this session. createdTimestamp <optional>
The time this session was created. updatedTimestamp <optional>
The time of the last activity from this session. -
TeamLogDeviceSyncBackupStatusChangedDetails
-
Enabled/disabled backup for computer.
Type:
- Object
Properties:
Name Type Description desktop_device_session_infoTeamLogDesktopDeviceSessionLogInfo Device's session logged information. previous_valueTeamLogBackupStatus Previous status of computer backup on the device. new_valueTeamLogBackupStatus Next status of computer backup on the device. -
TeamLogDeviceSyncBackupStatusChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDeviceType
-
Type:
- Object
Properties:
Name Type Description .tag'desktop' | 'mobile' | 'other' Tag identifying the union variant. -
TeamLogDeviceUnlinkDetails
-
Disconnected device.
Type:
- Object
Properties:
Name Type Argument Description delete_databoolean True if the user requested to delete data after device unlink, false otherwise. session_infoTeamLogWebSessionLogInfo | TeamLogDesktopSessionLogInfo | TeamLogMobileSessionLogInfo | TeamLogSessionLogInfo <optional>
Session unique id. display_namestring <optional>
The device name. Might be missing due to historical data gap. -
TeamLogDeviceUnlinkPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'keep' | 'remove' | 'other' Tag identifying the union variant. -
TeamLogDeviceUnlinkType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDirectoryRestrictionsAddMembersDetails
-
Added members to directory restrictions list.
Type:
- Object
-
TeamLogDirectoryRestrictionsAddMembersType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDirectoryRestrictionsRemoveMembersDetails
-
Removed members from directory restrictions list.
Type:
- Object
-
TeamLogDirectoryRestrictionsRemoveMembersType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDisabledDomainInvitesDetails
-
Disabled domain invites.
Type:
- Object
-
TeamLogDisabledDomainInvitesType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDispositionActionType
-
Type:
- Object
Properties:
Name Type Description .tag'automatic_delete' | 'automatic_permanently_delete' | 'other' Tag identifying the union variant. -
TeamLogDomainInvitesApproveRequestToJoinTeamDetails
-
Approved user's request to join team.
Type:
- Object
-
TeamLogDomainInvitesApproveRequestToJoinTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDomainInvitesDeclineRequestToJoinTeamDetails
-
Declined user's request to join team.
Type:
- Object
-
TeamLogDomainInvitesDeclineRequestToJoinTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDomainInvitesEmailExistingUsersDetails
-
Sent domain invites to existing domain accounts.
Type:
- Object
Properties:
Name Type Description domain_namestring Domain names. num_recipientsnumber Number of recipients. -
TeamLogDomainInvitesEmailExistingUsersType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDomainInvitesRequestToJoinTeamDetails
-
Requested to join team.
Type:
- Object
-
TeamLogDomainInvitesRequestToJoinTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDomainInvitesSetInviteNewUserPrefToNoDetails
-
Disabled "Automatically invite new users".
Type:
- Object
-
TeamLogDomainInvitesSetInviteNewUserPrefToNoType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDomainInvitesSetInviteNewUserPrefToYesDetails
-
Enabled "Automatically invite new users".
Type:
- Object
-
TeamLogDomainInvitesSetInviteNewUserPrefToYesType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDomainVerificationAddDomainFailDetails
-
Failed to verify team domain.
Type:
- Object
Properties:
Name Type Argument Description domain_namestring Domain name. verification_methodstring <optional>
Domain name verification method. Might be missing due to historical data gap. -
TeamLogDomainVerificationAddDomainFailType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDomainVerificationAddDomainSuccessDetails
-
Verified team domain.
Type:
- Object
Properties:
Name Type Argument Description domain_namesArray.<string> Domain names. verification_methodstring <optional>
Domain name verification method. Might be missing due to historical data gap. -
TeamLogDomainVerificationAddDomainSuccessType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDomainVerificationRemoveDomainDetails
-
Removed domain from list of verified team domains.
Type:
- Object
Properties:
Name Type Description domain_namesArray.<string> Domain names. -
TeamLogDomainVerificationRemoveDomainType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDownloadPolicyType
-
Shared content downloads policy
Type:
- Object
Properties:
Name Type Description .tag'allow' | 'disallow' | 'other' Tag identifying the union variant. -
TeamLogDropboxPasswordsExportedDetails
-
Exported passwords.
Type:
- Object
Properties:
Name Type Description platformstring The platform the device runs export. -
TeamLogDropboxPasswordsExportedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDropboxPasswordsNewDeviceEnrolledDetails
-
Enrolled new Dropbox Passwords device.
Type:
- Object
Properties:
Name Type Description is_first_deviceboolean Whether it's a first device enrolled. platformstring The platform the device is enrolled. -
TeamLogDropboxPasswordsNewDeviceEnrolledType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDropboxPasswordsPolicy
-
Policy for deciding whether team users can use Dropbox Passwords
Type:
- Object
Properties:
Name Type Description .tag'default' | 'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogDropboxPasswordsPolicyChangedDetails
-
Changed Dropbox Passwords policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogDropboxPasswordsPolicy To. previous_valueTeamLogDropboxPasswordsPolicy From. -
TeamLogDropboxPasswordsPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogDurationLogInfo
-
Represents a time duration: unit and amount
Type:
- Object
Properties:
Name Type Description unitTeamLogTimeUnit Time unit. amountnumber Amount of time. -
TeamLogEmailIngestPolicy
-
Policy for deciding whether a team can use Email to Dropbox feature
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogEmailIngestPolicyChangedDetails
-
Changed email to Dropbox policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogEmailIngestPolicy To. previous_valueTeamLogEmailIngestPolicy From. -
TeamLogEmailIngestPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEmailIngestReceiveFileDetails
-
Received files via Email to Dropbox.
Type:
- Object
Properties:
Name Type Argument Description inbox_namestring Inbox name. attachment_namesArray.<string> Submitted file names. subjectstring <optional>
Subject of the email. from_namestring <optional>
The name as provided by the submitter. from_emailstring <optional>
The email as provided by the submitter. -
TeamLogEmailIngestReceiveFileType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEmmAddExceptionDetails
-
Added members to EMM exception list.
Type:
- Object
-
TeamLogEmmAddExceptionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEmmChangePolicyDetails
-
Enabled/disabled enterprise mobility management for members.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamPoliciesEmmState New enterprise mobility management policy. previous_valueTeamPoliciesEmmState <optional>
Previous enterprise mobility management policy. Might be missing due to historical data gap. -
TeamLogEmmChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEmmCreateExceptionsReportDetails
-
Created EMM-excluded users report.
Type:
- Object
-
TeamLogEmmCreateExceptionsReportType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEmmCreateUsageReportDetails
-
Created EMM mobile app usage report.
Type:
- Object
-
TeamLogEmmCreateUsageReportType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEmmErrorDetails
-
Failed to sign in via EMM.
Type:
- Object
Properties:
Name Type Description error_detailsTeamLogFailureDetailsLogInfo Error details. -
TeamLogEmmErrorType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEmmRefreshAuthTokenDetails
-
Refreshed auth token used for setting up EMM.
Type:
- Object
-
TeamLogEmmRefreshAuthTokenType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEmmRemoveExceptionDetails
-
Removed members from EMM exception list.
Type:
- Object
-
TeamLogEmmRemoveExceptionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEnabledDomainInvitesDetails
-
Enabled domain invites.
Type:
- Object
-
TeamLogEnabledDomainInvitesType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEndedEnterpriseAdminSessionDeprecatedDetails
-
Ended enterprise admin session.
Type:
- Object
Properties:
Name Type Description federation_extra_detailsTeamLogFedExtraDetails More information about the organization or team. -
TeamLogEndedEnterpriseAdminSessionDeprecatedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEndedEnterpriseAdminSessionDetails
-
Ended enterprise admin session.
Type:
- Object
-
TeamLogEndedEnterpriseAdminSessionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEnforceLinkPasswordPolicy
-
Policy for deciding whether password must be enforced when an externally shared link is updated
Type:
- Object
Properties:
Name Type Description .tag'optional' | 'required' | 'other' Tag identifying the union variant. -
TeamLogEnterpriseSettingsLockingDetails
-
Changed who can update a setting.
Type:
- Object
Properties:
Name Type Description team_namestring The secondary team name. settings_page_namestring Settings page name. previous_settings_page_locking_statestring Previous locked settings page state. new_settings_page_locking_statestring New locked settings page state. -
TeamLogEnterpriseSettingsLockingType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogEventCategory
-
Category of events in event audit log.
Type:
- Object
Properties:
Name Type Description .tag'admin_alerting' | 'apps' | 'comments' | 'data_governance' | 'devices' | 'domains' | 'file_operations' | 'file_requests' | 'groups' | 'logins' | 'members' | 'paper' | 'passwords' | 'reports' | 'sharing' | 'showcase' | 'sso' | 'team_folders' | 'team_policies' | 'team_profile' | 'tfa' | 'trusted_teams' | 'other' Tag identifying the union variant. -
TeamLogEventDetails
-
Additional fields depending on the event type.
Type:
- Object
Properties:
Name Type Argument Description admin_alerting_alert_state_changed_detailsTeamLogAdminAlertingAlertStateChangedDetails <optional>
Available if .tag is admin_alerting_alert_state_changed_details. admin_alerting_changed_alert_config_detailsTeamLogAdminAlertingChangedAlertConfigDetails <optional>
Available if .tag is admin_alerting_changed_alert_config_details. admin_alerting_triggered_alert_detailsTeamLogAdminAlertingTriggeredAlertDetails <optional>
Available if .tag is admin_alerting_triggered_alert_details. app_blocked_by_permissions_detailsTeamLogAppBlockedByPermissionsDetails <optional>
Available if .tag is app_blocked_by_permissions_details. app_link_team_detailsTeamLogAppLinkTeamDetails <optional>
Available if .tag is app_link_team_details. app_link_user_detailsTeamLogAppLinkUserDetails <optional>
Available if .tag is app_link_user_details. app_unlink_team_detailsTeamLogAppUnlinkTeamDetails <optional>
Available if .tag is app_unlink_team_details. app_unlink_user_detailsTeamLogAppUnlinkUserDetails <optional>
Available if .tag is app_unlink_user_details. integration_connected_detailsTeamLogIntegrationConnectedDetails <optional>
Available if .tag is integration_connected_details. integration_disconnected_detailsTeamLogIntegrationDisconnectedDetails <optional>
Available if .tag is integration_disconnected_details. file_add_comment_detailsTeamLogFileAddCommentDetails <optional>
Available if .tag is file_add_comment_details. file_change_comment_subscription_detailsTeamLogFileChangeCommentSubscriptionDetails <optional>
Available if .tag is file_change_comment_subscription_details. file_delete_comment_detailsTeamLogFileDeleteCommentDetails <optional>
Available if .tag is file_delete_comment_details. file_edit_comment_detailsTeamLogFileEditCommentDetails <optional>
Available if .tag is file_edit_comment_details. file_like_comment_detailsTeamLogFileLikeCommentDetails <optional>
Available if .tag is file_like_comment_details. file_resolve_comment_detailsTeamLogFileResolveCommentDetails <optional>
Available if .tag is file_resolve_comment_details. file_unlike_comment_detailsTeamLogFileUnlikeCommentDetails <optional>
Available if .tag is file_unlike_comment_details. file_unresolve_comment_detailsTeamLogFileUnresolveCommentDetails <optional>
Available if .tag is file_unresolve_comment_details. governance_policy_add_folders_detailsTeamLogGovernancePolicyAddFoldersDetails <optional>
Available if .tag is governance_policy_add_folders_details. governance_policy_add_folder_failed_detailsTeamLogGovernancePolicyAddFolderFailedDetails <optional>
Available if .tag is governance_policy_add_folder_failed_details. governance_policy_content_disposed_detailsTeamLogGovernancePolicyContentDisposedDetails <optional>
Available if .tag is governance_policy_content_disposed_details. governance_policy_create_detailsTeamLogGovernancePolicyCreateDetails <optional>
Available if .tag is governance_policy_create_details. governance_policy_delete_detailsTeamLogGovernancePolicyDeleteDetails <optional>
Available if .tag is governance_policy_delete_details. governance_policy_edit_details_detailsTeamLogGovernancePolicyEditDetailsDetails <optional>
Available if .tag is governance_policy_edit_details_details. governance_policy_edit_duration_detailsTeamLogGovernancePolicyEditDurationDetails <optional>
Available if .tag is governance_policy_edit_duration_details. governance_policy_export_created_detailsTeamLogGovernancePolicyExportCreatedDetails <optional>
Available if .tag is governance_policy_export_created_details. governance_policy_export_removed_detailsTeamLogGovernancePolicyExportRemovedDetails <optional>
Available if .tag is governance_policy_export_removed_details. governance_policy_remove_folders_detailsTeamLogGovernancePolicyRemoveFoldersDetails <optional>
Available if .tag is governance_policy_remove_folders_details. governance_policy_report_created_detailsTeamLogGovernancePolicyReportCreatedDetails <optional>
Available if .tag is governance_policy_report_created_details. governance_policy_zip_part_downloaded_detailsTeamLogGovernancePolicyZipPartDownloadedDetails <optional>
Available if .tag is governance_policy_zip_part_downloaded_details. legal_holds_activate_a_hold_detailsTeamLogLegalHoldsActivateAHoldDetails <optional>
Available if .tag is legal_holds_activate_a_hold_details. legal_holds_add_members_detailsTeamLogLegalHoldsAddMembersDetails <optional>
Available if .tag is legal_holds_add_members_details. legal_holds_change_hold_details_detailsTeamLogLegalHoldsChangeHoldDetailsDetails <optional>
Available if .tag is legal_holds_change_hold_details_details. legal_holds_change_hold_name_detailsTeamLogLegalHoldsChangeHoldNameDetails <optional>
Available if .tag is legal_holds_change_hold_name_details. legal_holds_export_a_hold_detailsTeamLogLegalHoldsExportAHoldDetails <optional>
Available if .tag is legal_holds_export_a_hold_details. legal_holds_export_cancelled_detailsTeamLogLegalHoldsExportCancelledDetails <optional>
Available if .tag is legal_holds_export_cancelled_details. legal_holds_export_downloaded_detailsTeamLogLegalHoldsExportDownloadedDetails <optional>
Available if .tag is legal_holds_export_downloaded_details. legal_holds_export_removed_detailsTeamLogLegalHoldsExportRemovedDetails <optional>
Available if .tag is legal_holds_export_removed_details. legal_holds_release_a_hold_detailsTeamLogLegalHoldsReleaseAHoldDetails <optional>
Available if .tag is legal_holds_release_a_hold_details. legal_holds_remove_members_detailsTeamLogLegalHoldsRemoveMembersDetails <optional>
Available if .tag is legal_holds_remove_members_details. legal_holds_report_a_hold_detailsTeamLogLegalHoldsReportAHoldDetails <optional>
Available if .tag is legal_holds_report_a_hold_details. device_change_ip_desktop_detailsTeamLogDeviceChangeIpDesktopDetails <optional>
Available if .tag is device_change_ip_desktop_details. device_change_ip_mobile_detailsTeamLogDeviceChangeIpMobileDetails <optional>
Available if .tag is device_change_ip_mobile_details. device_change_ip_web_detailsTeamLogDeviceChangeIpWebDetails <optional>
Available if .tag is device_change_ip_web_details. device_delete_on_unlink_fail_detailsTeamLogDeviceDeleteOnUnlinkFailDetails <optional>
Available if .tag is device_delete_on_unlink_fail_details. device_delete_on_unlink_success_detailsTeamLogDeviceDeleteOnUnlinkSuccessDetails <optional>
Available if .tag is device_delete_on_unlink_success_details. device_link_fail_detailsTeamLogDeviceLinkFailDetails <optional>
Available if .tag is device_link_fail_details. device_link_success_detailsTeamLogDeviceLinkSuccessDetails <optional>
Available if .tag is device_link_success_details. device_management_disabled_detailsTeamLogDeviceManagementDisabledDetails <optional>
Available if .tag is device_management_disabled_details. device_management_enabled_detailsTeamLogDeviceManagementEnabledDetails <optional>
Available if .tag is device_management_enabled_details. device_sync_backup_status_changed_detailsTeamLogDeviceSyncBackupStatusChangedDetails <optional>
Available if .tag is device_sync_backup_status_changed_details. device_unlink_detailsTeamLogDeviceUnlinkDetails <optional>
Available if .tag is device_unlink_details. dropbox_passwords_exported_detailsTeamLogDropboxPasswordsExportedDetails <optional>
Available if .tag is dropbox_passwords_exported_details. dropbox_passwords_new_device_enrolled_detailsTeamLogDropboxPasswordsNewDeviceEnrolledDetails <optional>
Available if .tag is dropbox_passwords_new_device_enrolled_details. emm_refresh_auth_token_detailsTeamLogEmmRefreshAuthTokenDetails <optional>
Available if .tag is emm_refresh_auth_token_details. external_drive_backup_eligibility_status_checked_detailsTeamLogExternalDriveBackupEligibilityStatusCheckedDetails <optional>
Available if .tag is external_drive_backup_eligibility_status_checked_details. external_drive_backup_status_changed_detailsTeamLogExternalDriveBackupStatusChangedDetails <optional>
Available if .tag is external_drive_backup_status_changed_details. account_capture_change_availability_detailsTeamLogAccountCaptureChangeAvailabilityDetails <optional>
Available if .tag is account_capture_change_availability_details. account_capture_migrate_account_detailsTeamLogAccountCaptureMigrateAccountDetails <optional>
Available if .tag is account_capture_migrate_account_details. account_capture_notification_emails_sent_detailsTeamLogAccountCaptureNotificationEmailsSentDetails <optional>
Available if .tag is account_capture_notification_emails_sent_details. account_capture_relinquish_account_detailsTeamLogAccountCaptureRelinquishAccountDetails <optional>
Available if .tag is account_capture_relinquish_account_details. disabled_domain_invites_detailsTeamLogDisabledDomainInvitesDetails <optional>
Available if .tag is disabled_domain_invites_details. domain_invites_approve_request_to_join_team_detailsTeamLogDomainInvitesApproveRequestToJoinTeamDetails <optional>
Available if .tag is domain_invites_approve_request_to_join_team_details. domain_invites_decline_request_to_join_team_detailsTeamLogDomainInvitesDeclineRequestToJoinTeamDetails <optional>
Available if .tag is domain_invites_decline_request_to_join_team_details. domain_invites_email_existing_users_detailsTeamLogDomainInvitesEmailExistingUsersDetails <optional>
Available if .tag is domain_invites_email_existing_users_details. domain_invites_request_to_join_team_detailsTeamLogDomainInvitesRequestToJoinTeamDetails <optional>
Available if .tag is domain_invites_request_to_join_team_details. domain_invites_set_invite_new_user_pref_to_no_detailsTeamLogDomainInvitesSetInviteNewUserPrefToNoDetails <optional>
Available if .tag is domain_invites_set_invite_new_user_pref_to_no_details. domain_invites_set_invite_new_user_pref_to_yes_detailsTeamLogDomainInvitesSetInviteNewUserPrefToYesDetails <optional>
Available if .tag is domain_invites_set_invite_new_user_pref_to_yes_details. domain_verification_add_domain_fail_detailsTeamLogDomainVerificationAddDomainFailDetails <optional>
Available if .tag is domain_verification_add_domain_fail_details. domain_verification_add_domain_success_detailsTeamLogDomainVerificationAddDomainSuccessDetails <optional>
Available if .tag is domain_verification_add_domain_success_details. domain_verification_remove_domain_detailsTeamLogDomainVerificationRemoveDomainDetails <optional>
Available if .tag is domain_verification_remove_domain_details. enabled_domain_invites_detailsTeamLogEnabledDomainInvitesDetails <optional>
Available if .tag is enabled_domain_invites_details. apply_naming_convention_detailsTeamLogApplyNamingConventionDetails <optional>
Available if .tag is apply_naming_convention_details. create_folder_detailsTeamLogCreateFolderDetails <optional>
Available if .tag is create_folder_details. file_add_detailsTeamLogFileAddDetails <optional>
Available if .tag is file_add_details. file_copy_detailsTeamLogFileCopyDetails <optional>
Available if .tag is file_copy_details. file_delete_detailsTeamLogFileDeleteDetails <optional>
Available if .tag is file_delete_details. file_download_detailsTeamLogFileDownloadDetails <optional>
Available if .tag is file_download_details. file_edit_detailsTeamLogFileEditDetails <optional>
Available if .tag is file_edit_details. file_get_copy_reference_detailsTeamLogFileGetCopyReferenceDetails <optional>
Available if .tag is file_get_copy_reference_details. file_locking_lock_status_changed_detailsTeamLogFileLockingLockStatusChangedDetails <optional>
Available if .tag is file_locking_lock_status_changed_details. file_move_detailsTeamLogFileMoveDetails <optional>
Available if .tag is file_move_details. file_permanently_delete_detailsTeamLogFilePermanentlyDeleteDetails <optional>
Available if .tag is file_permanently_delete_details. file_preview_detailsTeamLogFilePreviewDetails <optional>
Available if .tag is file_preview_details. file_rename_detailsTeamLogFileRenameDetails <optional>
Available if .tag is file_rename_details. file_restore_detailsTeamLogFileRestoreDetails <optional>
Available if .tag is file_restore_details. file_revert_detailsTeamLogFileRevertDetails <optional>
Available if .tag is file_revert_details. file_rollback_changes_detailsTeamLogFileRollbackChangesDetails <optional>
- Available if .tag is file_rollback_changes_details. file_save_copy_reference_detailsTeamLogFileSaveCopyReferenceDetails <optional>
Available if .tag is file_save_copy_reference_details. folder_overview_description_changed_detailsTeamLogFolderOverviewDescriptionChangedDetails <optional>
Available if .tag is folder_overview_description_changed_details. folder_overview_item_pinned_detailsTeamLogFolderOverviewItemPinnedDetails <optional>
Available if .tag is folder_overview_item_pinned_details. folder_overview_item_unpinned_detailsTeamLogFolderOverviewItemUnpinnedDetails <optional>
Available if .tag is folder_overview_item_unpinned_details. object_label_added_detailsTeamLogObjectLabelAddedDetails <optional>
Available if .tag is object_label_added_details. object_label_removed_detailsTeamLogObjectLabelRemovedDetails <optional>
Available if .tag is object_label_removed_details. object_label_updated_value_detailsTeamLogObjectLabelUpdatedValueDetails <optional>
Available if .tag is object_label_updated_value_details. organize_folder_with_tidy_detailsTeamLogOrganizeFolderWithTidyDetails <optional>
Available if .tag is organize_folder_with_tidy_details. rewind_folder_detailsTeamLogRewindFolderDetails <optional>
Available if .tag is rewind_folder_details. undo_naming_convention_detailsTeamLogUndoNamingConventionDetails <optional>
Available if .tag is undo_naming_convention_details. undo_organize_folder_with_tidy_detailsTeamLogUndoOrganizeFolderWithTidyDetails <optional>
Available if .tag is undo_organize_folder_with_tidy_details. user_tags_added_detailsTeamLogUserTagsAddedDetails <optional>
Available if .tag is user_tags_added_details. user_tags_removed_detailsTeamLogUserTagsRemovedDetails <optional>
Available if .tag is user_tags_removed_details. email_ingest_receive_file_detailsTeamLogEmailIngestReceiveFileDetails <optional>
Available if .tag is email_ingest_receive_file_details. file_request_change_detailsTeamLogFileRequestChangeDetails <optional>
Available if .tag is file_request_change_details. file_request_close_detailsTeamLogFileRequestCloseDetails <optional>
Available if .tag is file_request_close_details. file_request_create_detailsTeamLogFileRequestCreateDetails <optional>
Available if .tag is file_request_create_details. file_request_delete_detailsTeamLogFileRequestDeleteDetails <optional>
Available if .tag is file_request_delete_details. file_request_receive_file_detailsTeamLogFileRequestReceiveFileDetails <optional>
Available if .tag is file_request_receive_file_details. group_add_external_id_detailsTeamLogGroupAddExternalIdDetails <optional>
- Available if .tag is group_add_external_id_details. group_add_member_detailsTeamLogGroupAddMemberDetails <optional>
Available if .tag is group_add_member_details. group_change_external_id_detailsTeamLogGroupChangeExternalIdDetails <optional>
Available if .tag is group_change_external_id_details. group_change_management_type_detailsTeamLogGroupChangeManagementTypeDetails <optional>
Available if .tag is group_change_management_type_details. group_change_member_role_detailsTeamLogGroupChangeMemberRoleDetails <optional>
Available if .tag is group_change_member_role_details. group_create_detailsTeamLogGroupCreateDetails <optional>
Available if .tag is group_create_details. group_delete_detailsTeamLogGroupDeleteDetails <optional>
Available if .tag is group_delete_details. group_description_updated_detailsTeamLogGroupDescriptionUpdatedDetails <optional>
Available if .tag is group_description_updated_details. group_join_policy_updated_detailsTeamLogGroupJoinPolicyUpdatedDetails <optional>
Available if .tag is group_join_policy_updated_details. group_moved_detailsTeamLogGroupMovedDetails <optional>
Available if .tag is group_moved_details. group_remove_external_id_detailsTeamLogGroupRemoveExternalIdDetails <optional>
Available if .tag is group_remove_external_id_details. group_remove_member_detailsTeamLogGroupRemoveMemberDetails <optional>
Available if .tag is group_remove_member_details. group_rename_detailsTeamLogGroupRenameDetails <optional>
Available if .tag is group_rename_details. account_lock_or_unlocked_detailsTeamLogAccountLockOrUnlockedDetails <optional>
Available if .tag is account_lock_or_unlocked_details. emm_error_detailsTeamLogEmmErrorDetails <optional>
Available if .tag is emm_error_details. guest_admin_signed_in_via_trusted_teams_detailsTeamLogGuestAdminSignedInViaTrustedTeamsDetails <optional>
Available if .tag is guest_admin_signed_in_via_trusted_teams_details. guest_admin_signed_out_via_trusted_teams_detailsTeamLogGuestAdminSignedOutViaTrustedTeamsDetails <optional>
Available if .tag is guest_admin_signed_out_via_trusted_teams_details. login_fail_detailsTeamLogLoginFailDetails <optional>
Available if .tag is login_fail_details. login_success_detailsTeamLogLoginSuccessDetails <optional>
Available if .tag is login_success_details. logout_detailsTeamLogLogoutDetails <optional>
Available if .tag is logout_details. reseller_support_session_end_detailsTeamLogResellerSupportSessionEndDetails <optional>
Available if .tag is reseller_support_session_end_details. reseller_support_session_start_detailsTeamLogResellerSupportSessionStartDetails <optional>
Available if .tag is reseller_support_session_start_details. sign_in_as_session_end_detailsTeamLogSignInAsSessionEndDetails <optional>
- Available if .tag is sign_in_as_session_end_details. sign_in_as_session_start_detailsTeamLogSignInAsSessionStartDetails <optional>
Available if .tag is sign_in_as_session_start_details. sso_error_detailsTeamLogSsoErrorDetails <optional>
Available if .tag is sso_error_details. create_team_invite_link_detailsTeamLogCreateTeamInviteLinkDetails <optional>
Available if .tag is create_team_invite_link_details. delete_team_invite_link_detailsTeamLogDeleteTeamInviteLinkDetails <optional>
Available if .tag is delete_team_invite_link_details. member_add_external_id_detailsTeamLogMemberAddExternalIdDetails <optional>
Available if .tag is member_add_external_id_details. member_add_name_detailsTeamLogMemberAddNameDetails <optional>
Available if .tag is member_add_name_details. member_change_admin_role_detailsTeamLogMemberChangeAdminRoleDetails <optional>
Available if .tag is member_change_admin_role_details. member_change_email_detailsTeamLogMemberChangeEmailDetails <optional>
Available if .tag is member_change_email_details. member_change_external_id_detailsTeamLogMemberChangeExternalIdDetails <optional>
Available if .tag is member_change_external_id_details. member_change_membership_type_detailsTeamLogMemberChangeMembershipTypeDetails <optional>
Available if .tag is member_change_membership_type_details. member_change_name_detailsTeamLogMemberChangeNameDetails <optional>
Available if .tag is member_change_name_details. member_change_reseller_role_detailsTeamLogMemberChangeResellerRoleDetails <optional>
Available if .tag is member_change_reseller_role_details. member_change_status_detailsTeamLogMemberChangeStatusDetails <optional>
Available if .tag is member_change_status_details. member_delete_manual_contacts_detailsTeamLogMemberDeleteManualContactsDetails <optional>
Available if .tag is member_delete_manual_contacts_details. member_delete_profile_photo_detailsTeamLogMemberDeleteProfilePhotoDetails <optional>
Available if .tag is member_delete_profile_photo_details. member_permanently_delete_account_contents_detailsTeamLogMemberPermanentlyDeleteAccountContentsDetails <optional>
Available if .tag is member_permanently_delete_account_contents_details. member_remove_external_id_detailsTeamLogMemberRemoveExternalIdDetails <optional>
Available if .tag is member_remove_external_id_details. member_set_profile_photo_detailsTeamLogMemberSetProfilePhotoDetails <optional>
Available if .tag is member_set_profile_photo_details. member_space_limits_add_custom_quota_detailsTeamLogMemberSpaceLimitsAddCustomQuotaDetails <optional>
Available if .tag is member_space_limits_add_custom_quota_details. member_space_limits_change_custom_quota_detailsTeamLogMemberSpaceLimitsChangeCustomQuotaDetails <optional>
Available if .tag is member_space_limits_change_custom_quota_details. member_space_limits_change_status_detailsTeamLogMemberSpaceLimitsChangeStatusDetails <optional>
Available if .tag is member_space_limits_change_status_details. member_space_limits_remove_custom_quota_detailsTeamLogMemberSpaceLimitsRemoveCustomQuotaDetails <optional>
Available if .tag is member_space_limits_remove_custom_quota_details. member_suggest_detailsTeamLogMemberSuggestDetails <optional>
Available if .tag is member_suggest_details. member_transfer_account_contents_detailsTeamLogMemberTransferAccountContentsDetails <optional>
Available if .tag is member_transfer_account_contents_details. pending_secondary_email_added_detailsTeamLogPendingSecondaryEmailAddedDetails <optional>
Available if .tag is pending_secondary_email_added_details. secondary_email_deleted_detailsTeamLogSecondaryEmailDeletedDetails <optional>
Available if .tag is secondary_email_deleted_details. secondary_email_verified_detailsTeamLogSecondaryEmailVerifiedDetails <optional>
Available if .tag is secondary_email_verified_details. secondary_mails_policy_changed_detailsTeamLogSecondaryMailsPolicyChangedDetails <optional>
Available if .tag is secondary_mails_policy_changed_details. binder_add_page_detailsTeamLogBinderAddPageDetails <optional>
Available if .tag is binder_add_page_details. binder_add_section_detailsTeamLogBinderAddSectionDetails <optional>
Available if .tag is binder_add_section_details. binder_remove_page_detailsTeamLogBinderRemovePageDetails <optional>
Available if .tag is binder_remove_page_details. binder_remove_section_detailsTeamLogBinderRemoveSectionDetails <optional>
- Available if .tag is binder_remove_section_details. binder_rename_page_detailsTeamLogBinderRenamePageDetails <optional>
Available if .tag is binder_rename_page_details. binder_rename_section_detailsTeamLogBinderRenameSectionDetails <optional>
- Available if .tag is binder_rename_section_details. binder_reorder_page_detailsTeamLogBinderReorderPageDetails <optional>
Available if .tag is binder_reorder_page_details. binder_reorder_section_detailsTeamLogBinderReorderSectionDetails <optional>
Available if .tag is binder_reorder_section_details. paper_content_add_member_detailsTeamLogPaperContentAddMemberDetails <optional>
Available if .tag is paper_content_add_member_details. paper_content_add_to_folder_detailsTeamLogPaperContentAddToFolderDetails <optional>
Available if .tag is paper_content_add_to_folder_details. paper_content_archive_detailsTeamLogPaperContentArchiveDetails <optional>
- Available if .tag is paper_content_archive_details. paper_content_create_detailsTeamLogPaperContentCreateDetails <optional>
Available if .tag is paper_content_create_details. paper_content_permanently_delete_detailsTeamLogPaperContentPermanentlyDeleteDetails <optional>
Available if .tag is paper_content_permanently_delete_details. paper_content_remove_from_folder_detailsTeamLogPaperContentRemoveFromFolderDetails <optional>
Available if .tag is paper_content_remove_from_folder_details. paper_content_remove_member_detailsTeamLogPaperContentRemoveMemberDetails <optional>
Available if .tag is paper_content_remove_member_details. paper_content_rename_detailsTeamLogPaperContentRenameDetails <optional>
Available if .tag is paper_content_rename_details. paper_content_restore_detailsTeamLogPaperContentRestoreDetails <optional>
- Available if .tag is paper_content_restore_details. paper_doc_add_comment_detailsTeamLogPaperDocAddCommentDetails <optional>
- Available if .tag is paper_doc_add_comment_details. paper_doc_change_member_role_detailsTeamLogPaperDocChangeMemberRoleDetails <optional>
Available if .tag is paper_doc_change_member_role_details. paper_doc_change_sharing_policy_detailsTeamLogPaperDocChangeSharingPolicyDetails <optional>
Available if .tag is paper_doc_change_sharing_policy_details. paper_doc_change_subscription_detailsTeamLogPaperDocChangeSubscriptionDetails <optional>
Available if .tag is paper_doc_change_subscription_details. paper_doc_deleted_detailsTeamLogPaperDocDeletedDetails <optional>
Available if .tag is paper_doc_deleted_details. paper_doc_delete_comment_detailsTeamLogPaperDocDeleteCommentDetails <optional>
Available if .tag is paper_doc_delete_comment_details. paper_doc_download_detailsTeamLogPaperDocDownloadDetails <optional>
Available if .tag is paper_doc_download_details. paper_doc_edit_detailsTeamLogPaperDocEditDetails <optional>
Available if .tag is paper_doc_edit_details. paper_doc_edit_comment_detailsTeamLogPaperDocEditCommentDetails <optional>
Available if .tag is paper_doc_edit_comment_details. paper_doc_followed_detailsTeamLogPaperDocFollowedDetails <optional>
Available if .tag is paper_doc_followed_details. paper_doc_mention_detailsTeamLogPaperDocMentionDetails <optional>
Available if .tag is paper_doc_mention_details. paper_doc_ownership_changed_detailsTeamLogPaperDocOwnershipChangedDetails <optional>
Available if .tag is paper_doc_ownership_changed_details. paper_doc_request_access_detailsTeamLogPaperDocRequestAccessDetails <optional>
Available if .tag is paper_doc_request_access_details. paper_doc_resolve_comment_detailsTeamLogPaperDocResolveCommentDetails <optional>
Available if .tag is paper_doc_resolve_comment_details. paper_doc_revert_detailsTeamLogPaperDocRevertDetails <optional>
Available if .tag is paper_doc_revert_details. paper_doc_slack_share_detailsTeamLogPaperDocSlackShareDetails <optional>
- Available if .tag is paper_doc_slack_share_details. paper_doc_team_invite_detailsTeamLogPaperDocTeamInviteDetails <optional>
- Available if .tag is paper_doc_team_invite_details. paper_doc_trashed_detailsTeamLogPaperDocTrashedDetails <optional>
Available if .tag is paper_doc_trashed_details. paper_doc_unresolve_comment_detailsTeamLogPaperDocUnresolveCommentDetails <optional>
Available if .tag is paper_doc_unresolve_comment_details. paper_doc_untrashed_detailsTeamLogPaperDocUntrashedDetails <optional>
Available if .tag is paper_doc_untrashed_details. paper_doc_view_detailsTeamLogPaperDocViewDetails <optional>
Available if .tag is paper_doc_view_details. paper_external_view_allow_detailsTeamLogPaperExternalViewAllowDetails <optional>
Available if .tag is paper_external_view_allow_details. paper_external_view_default_team_detailsTeamLogPaperExternalViewDefaultTeamDetails <optional>
Available if .tag is paper_external_view_default_team_details. paper_external_view_forbid_detailsTeamLogPaperExternalViewForbidDetails <optional>
Available if .tag is paper_external_view_forbid_details. paper_folder_change_subscription_detailsTeamLogPaperFolderChangeSubscriptionDetails <optional>
Available if .tag is paper_folder_change_subscription_details. paper_folder_deleted_detailsTeamLogPaperFolderDeletedDetails <optional>
Available if .tag is paper_folder_deleted_details. paper_folder_followed_detailsTeamLogPaperFolderFollowedDetails <optional>
- Available if .tag is paper_folder_followed_details. paper_folder_team_invite_detailsTeamLogPaperFolderTeamInviteDetails <optional>
Available if .tag is paper_folder_team_invite_details. paper_published_link_change_permission_detailsTeamLogPaperPublishedLinkChangePermissionDetails <optional>
Available if .tag is paper_published_link_change_permission_details. paper_published_link_create_detailsTeamLogPaperPublishedLinkCreateDetails <optional>
Available if .tag is paper_published_link_create_details. paper_published_link_disabled_detailsTeamLogPaperPublishedLinkDisabledDetails <optional>
Available if .tag is paper_published_link_disabled_details. paper_published_link_view_detailsTeamLogPaperPublishedLinkViewDetails <optional>
Available if .tag is paper_published_link_view_details. password_change_detailsTeamLogPasswordChangeDetails <optional>
Available if .tag is password_change_details. password_reset_detailsTeamLogPasswordResetDetails <optional>
Available if .tag is password_reset_details. password_reset_all_detailsTeamLogPasswordResetAllDetails <optional>
Available if .tag is password_reset_all_details. classification_create_report_detailsTeamLogClassificationCreateReportDetails <optional>
Available if .tag is classification_create_report_details. classification_create_report_fail_detailsTeamLogClassificationCreateReportFailDetails <optional>
Available if .tag is classification_create_report_fail_details. emm_create_exceptions_report_detailsTeamLogEmmCreateExceptionsReportDetails <optional>
Available if .tag is emm_create_exceptions_report_details. emm_create_usage_report_detailsTeamLogEmmCreateUsageReportDetails <optional>
Available if .tag is emm_create_usage_report_details. export_members_report_detailsTeamLogExportMembersReportDetails <optional>
- Available if .tag is export_members_report_details. export_members_report_fail_detailsTeamLogExportMembersReportFailDetails <optional>
Available if .tag is export_members_report_fail_details. external_sharing_create_report_detailsTeamLogExternalSharingCreateReportDetails <optional>
Available if .tag is external_sharing_create_report_details. external_sharing_report_failed_detailsTeamLogExternalSharingReportFailedDetails <optional>
Available if .tag is external_sharing_report_failed_details. no_expiration_link_gen_create_report_detailsTeamLogNoExpirationLinkGenCreateReportDetails <optional>
Available if .tag is no_expiration_link_gen_create_report_details. no_expiration_link_gen_report_failed_detailsTeamLogNoExpirationLinkGenReportFailedDetails <optional>
Available if .tag is no_expiration_link_gen_report_failed_details. no_password_link_gen_create_report_detailsTeamLogNoPasswordLinkGenCreateReportDetails <optional>
Available if .tag is no_password_link_gen_create_report_details. no_password_link_gen_report_failed_detailsTeamLogNoPasswordLinkGenReportFailedDetails <optional>
Available if .tag is no_password_link_gen_report_failed_details. no_password_link_view_create_report_detailsTeamLogNoPasswordLinkViewCreateReportDetails <optional>
Available if .tag is no_password_link_view_create_report_details. no_password_link_view_report_failed_detailsTeamLogNoPasswordLinkViewReportFailedDetails <optional>
Available if .tag is no_password_link_view_report_failed_details. outdated_link_view_create_report_detailsTeamLogOutdatedLinkViewCreateReportDetails <optional>
Available if .tag is outdated_link_view_create_report_details. outdated_link_view_report_failed_detailsTeamLogOutdatedLinkViewReportFailedDetails <optional>
Available if .tag is outdated_link_view_report_failed_details. paper_admin_export_start_detailsTeamLogPaperAdminExportStartDetails <optional>
Available if .tag is paper_admin_export_start_details. smart_sync_create_admin_privilege_report_detailsTeamLogSmartSyncCreateAdminPrivilegeReportDetails <optional>
Available if .tag is smart_sync_create_admin_privilege_report_details. team_activity_create_report_detailsTeamLogTeamActivityCreateReportDetails <optional>
Available if .tag is team_activity_create_report_details. team_activity_create_report_fail_detailsTeamLogTeamActivityCreateReportFailDetails <optional>
Available if .tag is team_activity_create_report_fail_details. collection_share_detailsTeamLogCollectionShareDetails <optional>
Available if .tag is collection_share_details. file_transfers_file_add_detailsTeamLogFileTransfersFileAddDetails <optional>
Available if .tag is file_transfers_file_add_details. file_transfers_transfer_delete_detailsTeamLogFileTransfersTransferDeleteDetails <optional>
Available if .tag is file_transfers_transfer_delete_details. file_transfers_transfer_download_detailsTeamLogFileTransfersTransferDownloadDetails <optional>
Available if .tag is file_transfers_transfer_download_details. file_transfers_transfer_send_detailsTeamLogFileTransfersTransferSendDetails <optional>
Available if .tag is file_transfers_transfer_send_details. file_transfers_transfer_view_detailsTeamLogFileTransfersTransferViewDetails <optional>
Available if .tag is file_transfers_transfer_view_details. note_acl_invite_only_detailsTeamLogNoteAclInviteOnlyDetails <optional>
Available if .tag is note_acl_invite_only_details. note_acl_link_detailsTeamLogNoteAclLinkDetails <optional>
Available if .tag is note_acl_link_details. note_acl_team_link_detailsTeamLogNoteAclTeamLinkDetails <optional>
Available if .tag is note_acl_team_link_details. note_shared_detailsTeamLogNoteSharedDetails <optional>
Available if .tag is note_shared_details. note_share_receive_detailsTeamLogNoteShareReceiveDetails <optional>
Available if .tag is note_share_receive_details. open_note_shared_detailsTeamLogOpenNoteSharedDetails <optional>
Available if .tag is open_note_shared_details. sf_add_group_detailsTeamLogSfAddGroupDetails <optional>
Available if .tag is sf_add_group_details. sf_allow_non_members_to_view_shared_links_detailsTeamLogSfAllowNonMembersToViewSharedLinksDetails <optional>
Available if .tag is sf_allow_non_members_to_view_shared_links_details. sf_external_invite_warn_detailsTeamLogSfExternalInviteWarnDetails <optional>
Available if .tag is sf_external_invite_warn_details. sf_fb_invite_detailsTeamLogSfFbInviteDetails <optional>
Available if .tag is sf_fb_invite_details. sf_fb_invite_change_role_detailsTeamLogSfFbInviteChangeRoleDetails <optional>
Available if .tag is sf_fb_invite_change_role_details. sf_fb_uninvite_detailsTeamLogSfFbUninviteDetails <optional>
Available if .tag is sf_fb_uninvite_details. sf_invite_group_detailsTeamLogSfInviteGroupDetails <optional>
Available if .tag is sf_invite_group_details. sf_team_grant_access_detailsTeamLogSfTeamGrantAccessDetails <optional>
Available if .tag is sf_team_grant_access_details. sf_team_invite_detailsTeamLogSfTeamInviteDetails <optional>
Available if .tag is sf_team_invite_details. sf_team_invite_change_role_detailsTeamLogSfTeamInviteChangeRoleDetails <optional>
Available if .tag is sf_team_invite_change_role_details. sf_team_join_detailsTeamLogSfTeamJoinDetails <optional>
Available if .tag is sf_team_join_details. sf_team_join_from_oob_link_detailsTeamLogSfTeamJoinFromOobLinkDetails <optional>
Available if .tag is sf_team_join_from_oob_link_details. sf_team_uninvite_detailsTeamLogSfTeamUninviteDetails <optional>
Available if .tag is sf_team_uninvite_details. shared_content_add_invitees_detailsTeamLogSharedContentAddInviteesDetails <optional>
Available if .tag is shared_content_add_invitees_details. shared_content_add_link_expiry_detailsTeamLogSharedContentAddLinkExpiryDetails <optional>
Available if .tag is shared_content_add_link_expiry_details. shared_content_add_link_password_detailsTeamLogSharedContentAddLinkPasswordDetails <optional>
Available if .tag is shared_content_add_link_password_details. shared_content_add_member_detailsTeamLogSharedContentAddMemberDetails <optional>
Available if .tag is shared_content_add_member_details. shared_content_change_downloads_policy_detailsTeamLogSharedContentChangeDownloadsPolicyDetails <optional>
Available if .tag is shared_content_change_downloads_policy_details. shared_content_change_invitee_role_detailsTeamLogSharedContentChangeInviteeRoleDetails <optional>
Available if .tag is shared_content_change_invitee_role_details. shared_content_change_link_audience_detailsTeamLogSharedContentChangeLinkAudienceDetails <optional>
Available if .tag is shared_content_change_link_audience_details. shared_content_change_link_expiry_detailsTeamLogSharedContentChangeLinkExpiryDetails <optional>
Available if .tag is shared_content_change_link_expiry_details. shared_content_change_link_password_detailsTeamLogSharedContentChangeLinkPasswordDetails <optional>
Available if .tag is shared_content_change_link_password_details. shared_content_change_member_role_detailsTeamLogSharedContentChangeMemberRoleDetails <optional>
Available if .tag is shared_content_change_member_role_details. shared_content_change_viewer_info_policy_detailsTeamLogSharedContentChangeViewerInfoPolicyDetails <optional>
Available if .tag is shared_content_change_viewer_info_policy_details. shared_content_claim_invitation_detailsTeamLogSharedContentClaimInvitationDetails <optional>
Available if .tag is shared_content_claim_invitation_details. shared_content_copy_detailsTeamLogSharedContentCopyDetails <optional>
Available if .tag is shared_content_copy_details. shared_content_download_detailsTeamLogSharedContentDownloadDetails <optional>
Available if .tag is shared_content_download_details. shared_content_relinquish_membership_detailsTeamLogSharedContentRelinquishMembershipDetails <optional>
Available if .tag is shared_content_relinquish_membership_details. shared_content_remove_invitees_detailsTeamLogSharedContentRemoveInviteesDetails <optional>
Available if .tag is shared_content_remove_invitees_details. shared_content_remove_link_expiry_detailsTeamLogSharedContentRemoveLinkExpiryDetails <optional>
Available if .tag is shared_content_remove_link_expiry_details. shared_content_remove_link_password_detailsTeamLogSharedContentRemoveLinkPasswordDetails <optional>
Available if .tag is shared_content_remove_link_password_details. shared_content_remove_member_detailsTeamLogSharedContentRemoveMemberDetails <optional>
Available if .tag is shared_content_remove_member_details. shared_content_request_access_detailsTeamLogSharedContentRequestAccessDetails <optional>
Available if .tag is shared_content_request_access_details. shared_content_restore_invitees_detailsTeamLogSharedContentRestoreInviteesDetails <optional>
Available if .tag is shared_content_restore_invitees_details. shared_content_restore_member_detailsTeamLogSharedContentRestoreMemberDetails <optional>
Available if .tag is shared_content_restore_member_details. shared_content_unshare_detailsTeamLogSharedContentUnshareDetails <optional>
Available if .tag is shared_content_unshare_details. shared_content_view_detailsTeamLogSharedContentViewDetails <optional>
Available if .tag is shared_content_view_details. shared_folder_change_link_policy_detailsTeamLogSharedFolderChangeLinkPolicyDetails <optional>
Available if .tag is shared_folder_change_link_policy_details. shared_folder_change_members_inheritance_policy_detailsTeamLogSharedFolderChangeMembersInheritancePolicyDetails <optional>
Available if .tag is shared_folder_change_members_inheritance_policy_details. shared_folder_change_members_management_policy_detailsTeamLogSharedFolderChangeMembersManagementPolicyDetails <optional>
Available if .tag is shared_folder_change_members_management_policy_details. shared_folder_change_members_policy_detailsTeamLogSharedFolderChangeMembersPolicyDetails <optional>
Available if .tag is shared_folder_change_members_policy_details. shared_folder_create_detailsTeamLogSharedFolderCreateDetails <optional>
Available if .tag is shared_folder_create_details. shared_folder_decline_invitation_detailsTeamLogSharedFolderDeclineInvitationDetails <optional>
Available if .tag is shared_folder_decline_invitation_details. shared_folder_mount_detailsTeamLogSharedFolderMountDetails <optional>
Available if .tag is shared_folder_mount_details. shared_folder_nest_detailsTeamLogSharedFolderNestDetails <optional>
Available if .tag is shared_folder_nest_details. shared_folder_transfer_ownership_detailsTeamLogSharedFolderTransferOwnershipDetails <optional>
Available if .tag is shared_folder_transfer_ownership_details. shared_folder_unmount_detailsTeamLogSharedFolderUnmountDetails <optional>
- Available if .tag is shared_folder_unmount_details. shared_link_add_expiry_detailsTeamLogSharedLinkAddExpiryDetails <optional>
Available if .tag is shared_link_add_expiry_details. shared_link_change_expiry_detailsTeamLogSharedLinkChangeExpiryDetails <optional>
Available if .tag is shared_link_change_expiry_details. shared_link_change_visibility_detailsTeamLogSharedLinkChangeVisibilityDetails <optional>
Available if .tag is shared_link_change_visibility_details. shared_link_copy_detailsTeamLogSharedLinkCopyDetails <optional>
Available if .tag is shared_link_copy_details. shared_link_create_detailsTeamLogSharedLinkCreateDetails <optional>
Available if .tag is shared_link_create_details. shared_link_disable_detailsTeamLogSharedLinkDisableDetails <optional>
Available if .tag is shared_link_disable_details. shared_link_download_detailsTeamLogSharedLinkDownloadDetails <optional>
Available if .tag is shared_link_download_details. shared_link_remove_expiry_detailsTeamLogSharedLinkRemoveExpiryDetails <optional>
Available if .tag is shared_link_remove_expiry_details. shared_link_settings_add_expiration_detailsTeamLogSharedLinkSettingsAddExpirationDetails <optional>
Available if .tag is shared_link_settings_add_expiration_details. shared_link_settings_add_password_detailsTeamLogSharedLinkSettingsAddPasswordDetails <optional>
Available if .tag is shared_link_settings_add_password_details. shared_link_settings_allow_download_disabled_detailsTeamLogSharedLinkSettingsAllowDownloadDisabledDetails <optional>
Available if .tag is shared_link_settings_allow_download_disabled_details. shared_link_settings_allow_download_enabled_detailsTeamLogSharedLinkSettingsAllowDownloadEnabledDetails <optional>
Available if .tag is shared_link_settings_allow_download_enabled_details. shared_link_settings_change_audience_detailsTeamLogSharedLinkSettingsChangeAudienceDetails <optional>
Available if .tag is shared_link_settings_change_audience_details. shared_link_settings_change_expiration_detailsTeamLogSharedLinkSettingsChangeExpirationDetails <optional>
Available if .tag is shared_link_settings_change_expiration_details. shared_link_settings_change_password_detailsTeamLogSharedLinkSettingsChangePasswordDetails <optional>
Available if .tag is shared_link_settings_change_password_details. shared_link_settings_remove_expiration_detailsTeamLogSharedLinkSettingsRemoveExpirationDetails <optional>
Available if .tag is shared_link_settings_remove_expiration_details. shared_link_settings_remove_password_detailsTeamLogSharedLinkSettingsRemovePasswordDetails <optional>
Available if .tag is shared_link_settings_remove_password_details. shared_link_share_detailsTeamLogSharedLinkShareDetails <optional>
Available if .tag is shared_link_share_details. shared_link_view_detailsTeamLogSharedLinkViewDetails <optional>
Available if .tag is shared_link_view_details. shared_note_opened_detailsTeamLogSharedNoteOpenedDetails <optional>
Available if .tag is shared_note_opened_details. shmodel_disable_downloads_detailsTeamLogShmodelDisableDownloadsDetails <optional>
Available if .tag is shmodel_disable_downloads_details. shmodel_enable_downloads_detailsTeamLogShmodelEnableDownloadsDetails <optional>
Available if .tag is shmodel_enable_downloads_details. shmodel_group_share_detailsTeamLogShmodelGroupShareDetails <optional>
Available if .tag is shmodel_group_share_details. showcase_access_granted_detailsTeamLogShowcaseAccessGrantedDetails <optional>
Available if .tag is showcase_access_granted_details. showcase_add_member_detailsTeamLogShowcaseAddMemberDetails <optional>
Available if .tag is showcase_add_member_details. showcase_archived_detailsTeamLogShowcaseArchivedDetails <optional>
Available if .tag is showcase_archived_details. showcase_created_detailsTeamLogShowcaseCreatedDetails <optional>
Available if .tag is showcase_created_details. showcase_delete_comment_detailsTeamLogShowcaseDeleteCommentDetails <optional>
Available if .tag is showcase_delete_comment_details. showcase_edited_detailsTeamLogShowcaseEditedDetails <optional>
Available if .tag is showcase_edited_details. showcase_edit_comment_detailsTeamLogShowcaseEditCommentDetails <optional>
- Available if .tag is showcase_edit_comment_details. showcase_file_added_detailsTeamLogShowcaseFileAddedDetails <optional>
Available if .tag is showcase_file_added_details. showcase_file_download_detailsTeamLogShowcaseFileDownloadDetails <optional>
Available if .tag is showcase_file_download_details. showcase_file_removed_detailsTeamLogShowcaseFileRemovedDetails <optional>
- Available if .tag is showcase_file_removed_details. showcase_file_view_detailsTeamLogShowcaseFileViewDetails <optional>
Available if .tag is showcase_file_view_details. showcase_permanently_deleted_detailsTeamLogShowcasePermanentlyDeletedDetails <optional>
Available if .tag is showcase_permanently_deleted_details. showcase_post_comment_detailsTeamLogShowcasePostCommentDetails <optional>
- Available if .tag is showcase_post_comment_details. showcase_remove_member_detailsTeamLogShowcaseRemoveMemberDetails <optional>
Available if .tag is showcase_remove_member_details. showcase_renamed_detailsTeamLogShowcaseRenamedDetails <optional>
Available if .tag is showcase_renamed_details. showcase_request_access_detailsTeamLogShowcaseRequestAccessDetails <optional>
Available if .tag is showcase_request_access_details. showcase_resolve_comment_detailsTeamLogShowcaseResolveCommentDetails <optional>
Available if .tag is showcase_resolve_comment_details. showcase_restored_detailsTeamLogShowcaseRestoredDetails <optional>
Available if .tag is showcase_restored_details. showcase_trashed_detailsTeamLogShowcaseTrashedDetails <optional>
Available if .tag is showcase_trashed_details. showcase_trashed_deprecated_detailsTeamLogShowcaseTrashedDeprecatedDetails <optional>
Available if .tag is showcase_trashed_deprecated_details. showcase_unresolve_comment_detailsTeamLogShowcaseUnresolveCommentDetails <optional>
Available if .tag is showcase_unresolve_comment_details. showcase_untrashed_detailsTeamLogShowcaseUntrashedDetails <optional>
Available if .tag is showcase_untrashed_details. showcase_untrashed_deprecated_detailsTeamLogShowcaseUntrashedDeprecatedDetails <optional>
Available if .tag is showcase_untrashed_deprecated_details. showcase_view_detailsTeamLogShowcaseViewDetails <optional>
Available if .tag is showcase_view_details. sso_add_cert_detailsTeamLogSsoAddCertDetails <optional>
Available if .tag is sso_add_cert_details. sso_add_login_url_detailsTeamLogSsoAddLoginUrlDetails <optional>
Available if .tag is sso_add_login_url_details. sso_add_logout_url_detailsTeamLogSsoAddLogoutUrlDetails <optional>
Available if .tag is sso_add_logout_url_details. sso_change_cert_detailsTeamLogSsoChangeCertDetails <optional>
Available if .tag is sso_change_cert_details. sso_change_login_url_detailsTeamLogSsoChangeLoginUrlDetails <optional>
Available if .tag is sso_change_login_url_details. sso_change_logout_url_detailsTeamLogSsoChangeLogoutUrlDetails <optional>
- Available if .tag is sso_change_logout_url_details. sso_change_saml_identity_mode_detailsTeamLogSsoChangeSamlIdentityModeDetails <optional>
Available if .tag is sso_change_saml_identity_mode_details. sso_remove_cert_detailsTeamLogSsoRemoveCertDetails <optional>
Available if .tag is sso_remove_cert_details. sso_remove_login_url_detailsTeamLogSsoRemoveLoginUrlDetails <optional>
Available if .tag is sso_remove_login_url_details. sso_remove_logout_url_detailsTeamLogSsoRemoveLogoutUrlDetails <optional>
- Available if .tag is sso_remove_logout_url_details. team_folder_change_status_detailsTeamLogTeamFolderChangeStatusDetails <optional>
Available if .tag is team_folder_change_status_details. team_folder_create_detailsTeamLogTeamFolderCreateDetails <optional>
Available if .tag is team_folder_create_details. team_folder_downgrade_detailsTeamLogTeamFolderDowngradeDetails <optional>
- Available if .tag is team_folder_downgrade_details. team_folder_permanently_delete_detailsTeamLogTeamFolderPermanentlyDeleteDetails <optional>
Available if .tag is team_folder_permanently_delete_details. team_folder_rename_detailsTeamLogTeamFolderRenameDetails <optional>
Available if .tag is team_folder_rename_details. team_selective_sync_settings_changed_detailsTeamLogTeamSelectiveSyncSettingsChangedDetails <optional>
Available if .tag is team_selective_sync_settings_changed_details. account_capture_change_policy_detailsTeamLogAccountCaptureChangePolicyDetails <optional>
Available if .tag is account_capture_change_policy_details. admin_email_reminders_changed_detailsTeamLogAdminEmailRemindersChangedDetails <optional>
Available if .tag is admin_email_reminders_changed_details. allow_download_disabled_detailsTeamLogAllowDownloadDisabledDetails <optional>
Available if .tag is allow_download_disabled_details. allow_download_enabled_detailsTeamLogAllowDownloadEnabledDetails <optional>
Available if .tag is allow_download_enabled_details. app_permissions_changed_detailsTeamLogAppPermissionsChangedDetails <optional>
Available if .tag is app_permissions_changed_details. camera_uploads_policy_changed_detailsTeamLogCameraUploadsPolicyChangedDetails <optional>
Available if .tag is camera_uploads_policy_changed_details. capture_transcript_policy_changed_detailsTeamLogCaptureTranscriptPolicyChangedDetails <optional>
Available if .tag is capture_transcript_policy_changed_details. classification_change_policy_detailsTeamLogClassificationChangePolicyDetails <optional>
Available if .tag is classification_change_policy_details. computer_backup_policy_changed_detailsTeamLogComputerBackupPolicyChangedDetails <optional>
Available if .tag is computer_backup_policy_changed_details. content_administration_policy_changed_detailsTeamLogContentAdministrationPolicyChangedDetails <optional>
Available if .tag is content_administration_policy_changed_details. data_placement_restriction_change_policy_detailsTeamLogDataPlacementRestrictionChangePolicyDetails <optional>
Available if .tag is data_placement_restriction_change_policy_details. data_placement_restriction_satisfy_policy_detailsTeamLogDataPlacementRestrictionSatisfyPolicyDetails <optional>
Available if .tag is data_placement_restriction_satisfy_policy_details. device_approvals_add_exception_detailsTeamLogDeviceApprovalsAddExceptionDetails <optional>
Available if .tag is device_approvals_add_exception_details. device_approvals_change_desktop_policy_detailsTeamLogDeviceApprovalsChangeDesktopPolicyDetails <optional>
Available if .tag is device_approvals_change_desktop_policy_details. device_approvals_change_mobile_policy_detailsTeamLogDeviceApprovalsChangeMobilePolicyDetails <optional>
Available if .tag is device_approvals_change_mobile_policy_details. device_approvals_change_overage_action_detailsTeamLogDeviceApprovalsChangeOverageActionDetails <optional>
Available if .tag is device_approvals_change_overage_action_details. device_approvals_change_unlink_action_detailsTeamLogDeviceApprovalsChangeUnlinkActionDetails <optional>
Available if .tag is device_approvals_change_unlink_action_details. device_approvals_remove_exception_detailsTeamLogDeviceApprovalsRemoveExceptionDetails <optional>
Available if .tag is device_approvals_remove_exception_details. directory_restrictions_add_members_detailsTeamLogDirectoryRestrictionsAddMembersDetails <optional>
Available if .tag is directory_restrictions_add_members_details. directory_restrictions_remove_members_detailsTeamLogDirectoryRestrictionsRemoveMembersDetails <optional>
Available if .tag is directory_restrictions_remove_members_details. dropbox_passwords_policy_changed_detailsTeamLogDropboxPasswordsPolicyChangedDetails <optional>
Available if .tag is dropbox_passwords_policy_changed_details. email_ingest_policy_changed_detailsTeamLogEmailIngestPolicyChangedDetails <optional>
Available if .tag is email_ingest_policy_changed_details. emm_add_exception_detailsTeamLogEmmAddExceptionDetails <optional>
Available if .tag is emm_add_exception_details. emm_change_policy_detailsTeamLogEmmChangePolicyDetails <optional>
Available if .tag is emm_change_policy_details. emm_remove_exception_detailsTeamLogEmmRemoveExceptionDetails <optional>
Available if .tag is emm_remove_exception_details. extended_version_history_change_policy_detailsTeamLogExtendedVersionHistoryChangePolicyDetails <optional>
Available if .tag is extended_version_history_change_policy_details. external_drive_backup_policy_changed_detailsTeamLogExternalDriveBackupPolicyChangedDetails <optional>
Available if .tag is external_drive_backup_policy_changed_details. file_comments_change_policy_detailsTeamLogFileCommentsChangePolicyDetails <optional>
Available if .tag is file_comments_change_policy_details. file_locking_policy_changed_detailsTeamLogFileLockingPolicyChangedDetails <optional>
Available if .tag is file_locking_policy_changed_details. file_provider_migration_policy_changed_detailsTeamLogFileProviderMigrationPolicyChangedDetails <optional>
Available if .tag is file_provider_migration_policy_changed_details. file_requests_change_policy_detailsTeamLogFileRequestsChangePolicyDetails <optional>
Available if .tag is file_requests_change_policy_details. file_requests_emails_enabled_detailsTeamLogFileRequestsEmailsEnabledDetails <optional>
Available if .tag is file_requests_emails_enabled_details. file_requests_emails_restricted_to_team_only_detailsTeamLogFileRequestsEmailsRestrictedToTeamOnlyDetails <optional>
Available if .tag is file_requests_emails_restricted_to_team_only_details. file_transfers_policy_changed_detailsTeamLogFileTransfersPolicyChangedDetails <optional>
Available if .tag is file_transfers_policy_changed_details. folder_link_restriction_policy_changed_detailsTeamLogFolderLinkRestrictionPolicyChangedDetails <optional>
Available if .tag is folder_link_restriction_policy_changed_details. google_sso_change_policy_detailsTeamLogGoogleSsoChangePolicyDetails <optional>
Available if .tag is google_sso_change_policy_details. group_user_management_change_policy_detailsTeamLogGroupUserManagementChangePolicyDetails <optional>
Available if .tag is group_user_management_change_policy_details. integration_policy_changed_detailsTeamLogIntegrationPolicyChangedDetails <optional>
Available if .tag is integration_policy_changed_details. invite_acceptance_email_policy_changed_detailsTeamLogInviteAcceptanceEmailPolicyChangedDetails <optional>
Available if .tag is invite_acceptance_email_policy_changed_details. member_requests_change_policy_detailsTeamLogMemberRequestsChangePolicyDetails <optional>
Available if .tag is member_requests_change_policy_details. member_send_invite_policy_changed_detailsTeamLogMemberSendInvitePolicyChangedDetails <optional>
Available if .tag is member_send_invite_policy_changed_details. member_space_limits_add_exception_detailsTeamLogMemberSpaceLimitsAddExceptionDetails <optional>
Available if .tag is member_space_limits_add_exception_details. member_space_limits_change_caps_type_policy_detailsTeamLogMemberSpaceLimitsChangeCapsTypePolicyDetails <optional>
Available if .tag is member_space_limits_change_caps_type_policy_details. member_space_limits_change_policy_detailsTeamLogMemberSpaceLimitsChangePolicyDetails <optional>
Available if .tag is member_space_limits_change_policy_details. member_space_limits_remove_exception_detailsTeamLogMemberSpaceLimitsRemoveExceptionDetails <optional>
Available if .tag is member_space_limits_remove_exception_details. member_suggestions_change_policy_detailsTeamLogMemberSuggestionsChangePolicyDetails <optional>
Available if .tag is member_suggestions_change_policy_details. microsoft_office_addin_change_policy_detailsTeamLogMicrosoftOfficeAddinChangePolicyDetails <optional>
Available if .tag is microsoft_office_addin_change_policy_details. network_control_change_policy_detailsTeamLogNetworkControlChangePolicyDetails <optional>
Available if .tag is network_control_change_policy_details. paper_change_deployment_policy_detailsTeamLogPaperChangeDeploymentPolicyDetails <optional>
Available if .tag is paper_change_deployment_policy_details. paper_change_member_link_policy_detailsTeamLogPaperChangeMemberLinkPolicyDetails <optional>
Available if .tag is paper_change_member_link_policy_details. paper_change_member_policy_detailsTeamLogPaperChangeMemberPolicyDetails <optional>
Available if .tag is paper_change_member_policy_details. paper_change_policy_detailsTeamLogPaperChangePolicyDetails <optional>
Available if .tag is paper_change_policy_details. paper_default_folder_policy_changed_detailsTeamLogPaperDefaultFolderPolicyChangedDetails <optional>
Available if .tag is paper_default_folder_policy_changed_details. paper_desktop_policy_changed_detailsTeamLogPaperDesktopPolicyChangedDetails <optional>
Available if .tag is paper_desktop_policy_changed_details. paper_enabled_users_group_addition_detailsTeamLogPaperEnabledUsersGroupAdditionDetails <optional>
Available if .tag is paper_enabled_users_group_addition_details. paper_enabled_users_group_removal_detailsTeamLogPaperEnabledUsersGroupRemovalDetails <optional>
Available if .tag is paper_enabled_users_group_removal_details. password_strength_requirements_change_policy_detailsTeamLogPasswordStrengthRequirementsChangePolicyDetails <optional>
Available if .tag is password_strength_requirements_change_policy_details. permanent_delete_change_policy_detailsTeamLogPermanentDeleteChangePolicyDetails <optional>
Available if .tag is permanent_delete_change_policy_details. reseller_support_change_policy_detailsTeamLogResellerSupportChangePolicyDetails <optional>
Available if .tag is reseller_support_change_policy_details. rewind_policy_changed_detailsTeamLogRewindPolicyChangedDetails <optional>
- Available if .tag is rewind_policy_changed_details. send_for_signature_policy_changed_detailsTeamLogSendForSignaturePolicyChangedDetails <optional>
Available if .tag is send_for_signature_policy_changed_details. sharing_change_folder_join_policy_detailsTeamLogSharingChangeFolderJoinPolicyDetails <optional>
Available if .tag is sharing_change_folder_join_policy_details. sharing_change_link_allow_change_expiration_policy_detailsTeamLogSharingChangeLinkAllowChangeExpirationPolicyDetails <optional>
Available if .tag is sharing_change_link_allow_change_expiration_policy_details. sharing_change_link_default_expiration_policy_detailsTeamLogSharingChangeLinkDefaultExpirationPolicyDetails <optional>
Available if .tag is sharing_change_link_default_expiration_policy_details. sharing_change_link_enforce_password_policy_detailsTeamLogSharingChangeLinkEnforcePasswordPolicyDetails <optional>
Available if .tag is sharing_change_link_enforce_password_policy_details. sharing_change_link_policy_detailsTeamLogSharingChangeLinkPolicyDetails <optional>
Available if .tag is sharing_change_link_policy_details. sharing_change_member_policy_detailsTeamLogSharingChangeMemberPolicyDetails <optional>
Available if .tag is sharing_change_member_policy_details. showcase_change_download_policy_detailsTeamLogShowcaseChangeDownloadPolicyDetails <optional>
Available if .tag is showcase_change_download_policy_details. showcase_change_enabled_policy_detailsTeamLogShowcaseChangeEnabledPolicyDetails <optional>
Available if .tag is showcase_change_enabled_policy_details. showcase_change_external_sharing_policy_detailsTeamLogShowcaseChangeExternalSharingPolicyDetails <optional>
Available if .tag is showcase_change_external_sharing_policy_details. smarter_smart_sync_policy_changed_detailsTeamLogSmarterSmartSyncPolicyChangedDetails <optional>
Available if .tag is smarter_smart_sync_policy_changed_details. smart_sync_change_policy_detailsTeamLogSmartSyncChangePolicyDetails <optional>
Available if .tag is smart_sync_change_policy_details. smart_sync_not_opt_out_detailsTeamLogSmartSyncNotOptOutDetails <optional>
- Available if .tag is smart_sync_not_opt_out_details. smart_sync_opt_out_detailsTeamLogSmartSyncOptOutDetails <optional>
Available if .tag is smart_sync_opt_out_details. sso_change_policy_detailsTeamLogSsoChangePolicyDetails <optional>
Available if .tag is sso_change_policy_details. team_branding_policy_changed_detailsTeamLogTeamBrandingPolicyChangedDetails <optional>
Available if .tag is team_branding_policy_changed_details. team_extensions_policy_changed_detailsTeamLogTeamExtensionsPolicyChangedDetails <optional>
Available if .tag is team_extensions_policy_changed_details. team_selective_sync_policy_changed_detailsTeamLogTeamSelectiveSyncPolicyChangedDetails <optional>
Available if .tag is team_selective_sync_policy_changed_details. team_sharing_whitelist_subjects_changed_detailsTeamLogTeamSharingWhitelistSubjectsChangedDetails <optional>
Available if .tag is team_sharing_whitelist_subjects_changed_details. tfa_add_exception_detailsTeamLogTfaAddExceptionDetails <optional>
Available if .tag is tfa_add_exception_details. tfa_change_policy_detailsTeamLogTfaChangePolicyDetails <optional>
Available if .tag is tfa_change_policy_details. tfa_remove_exception_detailsTeamLogTfaRemoveExceptionDetails <optional>
Available if .tag is tfa_remove_exception_details. two_account_change_policy_detailsTeamLogTwoAccountChangePolicyDetails <optional>
Available if .tag is two_account_change_policy_details. viewer_info_policy_changed_detailsTeamLogViewerInfoPolicyChangedDetails <optional>
Available if .tag is viewer_info_policy_changed_details. watermarking_policy_changed_detailsTeamLogWatermarkingPolicyChangedDetails <optional>
Available if .tag is watermarking_policy_changed_details. web_sessions_change_active_session_limit_detailsTeamLogWebSessionsChangeActiveSessionLimitDetails <optional>
Available if .tag is web_sessions_change_active_session_limit_details. web_sessions_change_fixed_length_policy_detailsTeamLogWebSessionsChangeFixedLengthPolicyDetails <optional>
Available if .tag is web_sessions_change_fixed_length_policy_details. web_sessions_change_idle_length_policy_detailsTeamLogWebSessionsChangeIdleLengthPolicyDetails <optional>
Available if .tag is web_sessions_change_idle_length_policy_details. data_residency_migration_request_successful_detailsTeamLogDataResidencyMigrationRequestSuccessfulDetails <optional>
Available if .tag is data_residency_migration_request_successful_details. data_residency_migration_request_unsuccessful_detailsTeamLogDataResidencyMigrationRequestUnsuccessfulDetails <optional>
Available if .tag is data_residency_migration_request_unsuccessful_details. team_merge_from_detailsTeamLogTeamMergeFromDetails <optional>
Available if .tag is team_merge_from_details. team_merge_to_detailsTeamLogTeamMergeToDetails <optional>
Available if .tag is team_merge_to_details. team_profile_add_background_detailsTeamLogTeamProfileAddBackgroundDetails <optional>
Available if .tag is team_profile_add_background_details. team_profile_add_logo_detailsTeamLogTeamProfileAddLogoDetails <optional>
- Available if .tag is team_profile_add_logo_details. team_profile_change_background_detailsTeamLogTeamProfileChangeBackgroundDetails <optional>
Available if .tag is team_profile_change_background_details. team_profile_change_default_language_detailsTeamLogTeamProfileChangeDefaultLanguageDetails <optional>
Available if .tag is team_profile_change_default_language_details. team_profile_change_logo_detailsTeamLogTeamProfileChangeLogoDetails <optional>
Available if .tag is team_profile_change_logo_details. team_profile_change_name_detailsTeamLogTeamProfileChangeNameDetails <optional>
Available if .tag is team_profile_change_name_details. team_profile_remove_background_detailsTeamLogTeamProfileRemoveBackgroundDetails <optional>
Available if .tag is team_profile_remove_background_details. team_profile_remove_logo_detailsTeamLogTeamProfileRemoveLogoDetails <optional>
Available if .tag is team_profile_remove_logo_details. tfa_add_backup_phone_detailsTeamLogTfaAddBackupPhoneDetails <optional>
Available if .tag is tfa_add_backup_phone_details. tfa_add_security_key_detailsTeamLogTfaAddSecurityKeyDetails <optional>
Available if .tag is tfa_add_security_key_details. tfa_change_backup_phone_detailsTeamLogTfaChangeBackupPhoneDetails <optional>
Available if .tag is tfa_change_backup_phone_details. tfa_change_status_detailsTeamLogTfaChangeStatusDetails <optional>
Available if .tag is tfa_change_status_details. tfa_remove_backup_phone_detailsTeamLogTfaRemoveBackupPhoneDetails <optional>
Available if .tag is tfa_remove_backup_phone_details. tfa_remove_security_key_detailsTeamLogTfaRemoveSecurityKeyDetails <optional>
Available if .tag is tfa_remove_security_key_details. tfa_reset_detailsTeamLogTfaResetDetails <optional>
Available if .tag is tfa_reset_details. changed_enterprise_admin_role_detailsTeamLogChangedEnterpriseAdminRoleDetails <optional>
Available if .tag is changed_enterprise_admin_role_details. changed_enterprise_connected_team_status_detailsTeamLogChangedEnterpriseConnectedTeamStatusDetails <optional>
Available if .tag is changed_enterprise_connected_team_status_details. ended_enterprise_admin_session_detailsTeamLogEndedEnterpriseAdminSessionDetails <optional>
Available if .tag is ended_enterprise_admin_session_details. ended_enterprise_admin_session_deprecated_detailsTeamLogEndedEnterpriseAdminSessionDeprecatedDetails <optional>
Available if .tag is ended_enterprise_admin_session_deprecated_details. enterprise_settings_locking_detailsTeamLogEnterpriseSettingsLockingDetails <optional>
Available if .tag is enterprise_settings_locking_details. guest_admin_change_status_detailsTeamLogGuestAdminChangeStatusDetails <optional>
Available if .tag is guest_admin_change_status_details. started_enterprise_admin_session_detailsTeamLogStartedEnterpriseAdminSessionDetails <optional>
Available if .tag is started_enterprise_admin_session_details. team_merge_request_accepted_detailsTeamLogTeamMergeRequestAcceptedDetails <optional>
Available if .tag is team_merge_request_accepted_details. team_merge_request_accepted_shown_to_primary_team_detailsTeamLogTeamMergeRequestAcceptedShownToPrimaryTeamDetails <optional>
Available if .tag is team_merge_request_accepted_shown_to_primary_team_details. team_merge_request_accepted_shown_to_secondary_team_detailsTeamLogTeamMergeRequestAcceptedShownToSecondaryTeamDetails <optional>
Available if .tag is team_merge_request_accepted_shown_to_secondary_team_details. team_merge_request_auto_canceled_detailsTeamLogTeamMergeRequestAutoCanceledDetails <optional>
Available if .tag is team_merge_request_auto_canceled_details. team_merge_request_canceled_detailsTeamLogTeamMergeRequestCanceledDetails <optional>
Available if .tag is team_merge_request_canceled_details. team_merge_request_canceled_shown_to_primary_team_detailsTeamLogTeamMergeRequestCanceledShownToPrimaryTeamDetails <optional>
Available if .tag is team_merge_request_canceled_shown_to_primary_team_details. team_merge_request_canceled_shown_to_secondary_team_detailsTeamLogTeamMergeRequestCanceledShownToSecondaryTeamDetails <optional>
Available if .tag is team_merge_request_canceled_shown_to_secondary_team_details. team_merge_request_expired_detailsTeamLogTeamMergeRequestExpiredDetails <optional>
Available if .tag is team_merge_request_expired_details. team_merge_request_expired_shown_to_primary_team_detailsTeamLogTeamMergeRequestExpiredShownToPrimaryTeamDetails <optional>
Available if .tag is team_merge_request_expired_shown_to_primary_team_details. team_merge_request_expired_shown_to_secondary_team_detailsTeamLogTeamMergeRequestExpiredShownToSecondaryTeamDetails <optional>
Available if .tag is team_merge_request_expired_shown_to_secondary_team_details. team_merge_request_rejected_shown_to_primary_team_detailsTeamLogTeamMergeRequestRejectedShownToPrimaryTeamDetails <optional>
Available if .tag is team_merge_request_rejected_shown_to_primary_team_details. team_merge_request_rejected_shown_to_secondary_team_detailsTeamLogTeamMergeRequestRejectedShownToSecondaryTeamDetails <optional>
Available if .tag is team_merge_request_rejected_shown_to_secondary_team_details. team_merge_request_reminder_detailsTeamLogTeamMergeRequestReminderDetails <optional>
Available if .tag is team_merge_request_reminder_details. team_merge_request_reminder_shown_to_primary_team_detailsTeamLogTeamMergeRequestReminderShownToPrimaryTeamDetails <optional>
Available if .tag is team_merge_request_reminder_shown_to_primary_team_details. team_merge_request_reminder_shown_to_secondary_team_detailsTeamLogTeamMergeRequestReminderShownToSecondaryTeamDetails <optional>
Available if .tag is team_merge_request_reminder_shown_to_secondary_team_details. team_merge_request_revoked_detailsTeamLogTeamMergeRequestRevokedDetails <optional>
Available if .tag is team_merge_request_revoked_details. team_merge_request_sent_shown_to_primary_team_detailsTeamLogTeamMergeRequestSentShownToPrimaryTeamDetails <optional>
Available if .tag is team_merge_request_sent_shown_to_primary_team_details. team_merge_request_sent_shown_to_secondary_team_detailsTeamLogTeamMergeRequestSentShownToSecondaryTeamDetails <optional>
Available if .tag is team_merge_request_sent_shown_to_secondary_team_details. missing_detailsTeamLogMissingDetails <optional>
Available if .tag is missing_details. Hints that this event was returned with missing details due to an internal error. .tag'admin_alerting_alert_state_changed_details' | 'admin_alerting_changed_alert_config_details' | 'admin_alerting_triggered_alert_details' | 'app_blocked_by_permissions_details' | 'app_link_team_details' | 'app_link_user_details' | 'app_unlink_team_details' | 'app_unlink_user_details' | 'integration_connected_details' | 'integration_disconnected_details' | 'file_add_comment_details' | 'file_change_comment_subscription_details' | 'file_delete_comment_details' | 'file_edit_comment_details' | 'file_like_comment_details' | 'file_resolve_comment_details' | 'file_unlike_comment_details' | 'file_unresolve_comment_details' | 'governance_policy_add_folders_details' | 'governance_policy_add_folder_failed_details' | 'governance_policy_content_disposed_details' | 'governance_policy_create_details' | 'governance_policy_delete_details' | 'governance_policy_edit_details_details' | 'governance_policy_edit_duration_details' | 'governance_policy_export_created_details' | 'governance_policy_export_removed_details' | 'governance_policy_remove_folders_details' | 'governance_policy_report_created_details' | 'governance_policy_zip_part_downloaded_details' | 'legal_holds_activate_a_hold_details' | 'legal_holds_add_members_details' | 'legal_holds_change_hold_details_details' | 'legal_holds_change_hold_name_details' | 'legal_holds_export_a_hold_details' | 'legal_holds_export_cancelled_details' | 'legal_holds_export_downloaded_details' | 'legal_holds_export_removed_details' | 'legal_holds_release_a_hold_details' | 'legal_holds_remove_members_details' | 'legal_holds_report_a_hold_details' | 'device_change_ip_desktop_details' | 'device_change_ip_mobile_details' | 'device_change_ip_web_details' | 'device_delete_on_unlink_fail_details' | 'device_delete_on_unlink_success_details' | 'device_link_fail_details' | 'device_link_success_details' | 'device_management_disabled_details' | 'device_management_enabled_details' | 'device_sync_backup_status_changed_details' | 'device_unlink_details' | 'dropbox_passwords_exported_details' | 'dropbox_passwords_new_device_enrolled_details' | 'emm_refresh_auth_token_details' | 'external_drive_backup_eligibility_status_checked_details' | 'external_drive_backup_status_changed_details' | 'account_capture_change_availability_details' | 'account_capture_migrate_account_details' | 'account_capture_notification_emails_sent_details' | 'account_capture_relinquish_account_details' | 'disabled_domain_invites_details' | 'domain_invites_approve_request_to_join_team_details' | 'domain_invites_decline_request_to_join_team_details' | 'domain_invites_email_existing_users_details' | 'domain_invites_request_to_join_team_details' | 'domain_invites_set_invite_new_user_pref_to_no_details' | 'domain_invites_set_invite_new_user_pref_to_yes_details' | 'domain_verification_add_domain_fail_details' | 'domain_verification_add_domain_success_details' | 'domain_verification_remove_domain_details' | 'enabled_domain_invites_details' | 'apply_naming_convention_details' | 'create_folder_details' | 'file_add_details' | 'file_copy_details' | 'file_delete_details' | 'file_download_details' | 'file_edit_details' | 'file_get_copy_reference_details' | 'file_locking_lock_status_changed_details' | 'file_move_details' | 'file_permanently_delete_details' | 'file_preview_details' | 'file_rename_details' | 'file_restore_details' | 'file_revert_details' | 'file_rollback_changes_details' | 'file_save_copy_reference_details' | 'folder_overview_description_changed_details' | 'folder_overview_item_pinned_details' | 'folder_overview_item_unpinned_details' | 'object_label_added_details' | 'object_label_removed_details' | 'object_label_updated_value_details' | 'organize_folder_with_tidy_details' | 'rewind_folder_details' | 'undo_naming_convention_details' | 'undo_organize_folder_with_tidy_details' | 'user_tags_added_details' | 'user_tags_removed_details' | 'email_ingest_receive_file_details' | 'file_request_change_details' | 'file_request_close_details' | 'file_request_create_details' | 'file_request_delete_details' | 'file_request_receive_file_details' | 'group_add_external_id_details' | 'group_add_member_details' | 'group_change_external_id_details' | 'group_change_management_type_details' | 'group_change_member_role_details' | 'group_create_details' | 'group_delete_details' | 'group_description_updated_details' | 'group_join_policy_updated_details' | 'group_moved_details' | 'group_remove_external_id_details' | 'group_remove_member_details' | 'group_rename_details' | 'account_lock_or_unlocked_details' | 'emm_error_details' | 'guest_admin_signed_in_via_trusted_teams_details' | 'guest_admin_signed_out_via_trusted_teams_details' | 'login_fail_details' | 'login_success_details' | 'logout_details' | 'reseller_support_session_end_details' | 'reseller_support_session_start_details' | 'sign_in_as_session_end_details' | 'sign_in_as_session_start_details' | 'sso_error_details' | 'create_team_invite_link_details' | 'delete_team_invite_link_details' | 'member_add_external_id_details' | 'member_add_name_details' | 'member_change_admin_role_details' | 'member_change_email_details' | 'member_change_external_id_details' | 'member_change_membership_type_details' | 'member_change_name_details' | 'member_change_reseller_role_details' | 'member_change_status_details' | 'member_delete_manual_contacts_details' | 'member_delete_profile_photo_details' | 'member_permanently_delete_account_contents_details' | 'member_remove_external_id_details' | 'member_set_profile_photo_details' | 'member_space_limits_add_custom_quota_details' | 'member_space_limits_change_custom_quota_details' | 'member_space_limits_change_status_details' | 'member_space_limits_remove_custom_quota_details' | 'member_suggest_details' | 'member_transfer_account_contents_details' | 'pending_secondary_email_added_details' | 'secondary_email_deleted_details' | 'secondary_email_verified_details' | 'secondary_mails_policy_changed_details' | 'binder_add_page_details' | 'binder_add_section_details' | 'binder_remove_page_details' | 'binder_remove_section_details' | 'binder_rename_page_details' | 'binder_rename_section_details' | 'binder_reorder_page_details' | 'binder_reorder_section_details' | 'paper_content_add_member_details' | 'paper_content_add_to_folder_details' | 'paper_content_archive_details' | 'paper_content_create_details' | 'paper_content_permanently_delete_details' | 'paper_content_remove_from_folder_details' | 'paper_content_remove_member_details' | 'paper_content_rename_details' | 'paper_content_restore_details' | 'paper_doc_add_comment_details' | 'paper_doc_change_member_role_details' | 'paper_doc_change_sharing_policy_details' | 'paper_doc_change_subscription_details' | 'paper_doc_deleted_details' | 'paper_doc_delete_comment_details' | 'paper_doc_download_details' | 'paper_doc_edit_details' | 'paper_doc_edit_comment_details' | 'paper_doc_followed_details' | 'paper_doc_mention_details' | 'paper_doc_ownership_changed_details' | 'paper_doc_request_access_details' | 'paper_doc_resolve_comment_details' | 'paper_doc_revert_details' | 'paper_doc_slack_share_details' | 'paper_doc_team_invite_details' | 'paper_doc_trashed_details' | 'paper_doc_unresolve_comment_details' | 'paper_doc_untrashed_details' | 'paper_doc_view_details' | 'paper_external_view_allow_details' | 'paper_external_view_default_team_details' | 'paper_external_view_forbid_details' | 'paper_folder_change_subscription_details' | 'paper_folder_deleted_details' | 'paper_folder_followed_details' | 'paper_folder_team_invite_details' | 'paper_published_link_change_permission_details' | 'paper_published_link_create_details' | 'paper_published_link_disabled_details' | 'paper_published_link_view_details' | 'password_change_details' | 'password_reset_details' | 'password_reset_all_details' | 'classification_create_report_details' | 'classification_create_report_fail_details' | 'emm_create_exceptions_report_details' | 'emm_create_usage_report_details' | 'export_members_report_details' | 'export_members_report_fail_details' | 'external_sharing_create_report_details' | 'external_sharing_report_failed_details' | 'no_expiration_link_gen_create_report_details' | 'no_expiration_link_gen_report_failed_details' | 'no_password_link_gen_create_report_details' | 'no_password_link_gen_report_failed_details' | 'no_password_link_view_create_report_details' | 'no_password_link_view_report_failed_details' | 'outdated_link_view_create_report_details' | 'outdated_link_view_report_failed_details' | 'paper_admin_export_start_details' | 'smart_sync_create_admin_privilege_report_details' | 'team_activity_create_report_details' | 'team_activity_create_report_fail_details' | 'collection_share_details' | 'file_transfers_file_add_details' | 'file_transfers_transfer_delete_details' | 'file_transfers_transfer_download_details' | 'file_transfers_transfer_send_details' | 'file_transfers_transfer_view_details' | 'note_acl_invite_only_details' | 'note_acl_link_details' | 'note_acl_team_link_details' | 'note_shared_details' | 'note_share_receive_details' | 'open_note_shared_details' | 'sf_add_group_details' | 'sf_allow_non_members_to_view_shared_links_details' | 'sf_external_invite_warn_details' | 'sf_fb_invite_details' | 'sf_fb_invite_change_role_details' | 'sf_fb_uninvite_details' | 'sf_invite_group_details' | 'sf_team_grant_access_details' | 'sf_team_invite_details' | 'sf_team_invite_change_role_details' | 'sf_team_join_details' | 'sf_team_join_from_oob_link_details' | 'sf_team_uninvite_details' | 'shared_content_add_invitees_details' | 'shared_content_add_link_expiry_details' | 'shared_content_add_link_password_details' | 'shared_content_add_member_details' | 'shared_content_change_downloads_policy_details' | 'shared_content_change_invitee_role_details' | 'shared_content_change_link_audience_details' | 'shared_content_change_link_expiry_details' | 'shared_content_change_link_password_details' | 'shared_content_change_member_role_details' | 'shared_content_change_viewer_info_policy_details' | 'shared_content_claim_invitation_details' | 'shared_content_copy_details' | 'shared_content_download_details' | 'shared_content_relinquish_membership_details' | 'shared_content_remove_invitees_details' | 'shared_content_remove_link_expiry_details' | 'shared_content_remove_link_password_details' | 'shared_content_remove_member_details' | 'shared_content_request_access_details' | 'shared_content_restore_invitees_details' | 'shared_content_restore_member_details' | 'shared_content_unshare_details' | 'shared_content_view_details' | 'shared_folder_change_link_policy_details' | 'shared_folder_change_members_inheritance_policy_details' | 'shared_folder_change_members_management_policy_details' | 'shared_folder_change_members_policy_details' | 'shared_folder_create_details' | 'shared_folder_decline_invitation_details' | 'shared_folder_mount_details' | 'shared_folder_nest_details' | 'shared_folder_transfer_ownership_details' | 'shared_folder_unmount_details' | 'shared_link_add_expiry_details' | 'shared_link_change_expiry_details' | 'shared_link_change_visibility_details' | 'shared_link_copy_details' | 'shared_link_create_details' | 'shared_link_disable_details' | 'shared_link_download_details' | 'shared_link_remove_expiry_details' | 'shared_link_settings_add_expiration_details' | 'shared_link_settings_add_password_details' | 'shared_link_settings_allow_download_disabled_details' | 'shared_link_settings_allow_download_enabled_details' | 'shared_link_settings_change_audience_details' | 'shared_link_settings_change_expiration_details' | 'shared_link_settings_change_password_details' | 'shared_link_settings_remove_expiration_details' | 'shared_link_settings_remove_password_details' | 'shared_link_share_details' | 'shared_link_view_details' | 'shared_note_opened_details' | 'shmodel_disable_downloads_details' | 'shmodel_enable_downloads_details' | 'shmodel_group_share_details' | 'showcase_access_granted_details' | 'showcase_add_member_details' | 'showcase_archived_details' | 'showcase_created_details' | 'showcase_delete_comment_details' | 'showcase_edited_details' | 'showcase_edit_comment_details' | 'showcase_file_added_details' | 'showcase_file_download_details' | 'showcase_file_removed_details' | 'showcase_file_view_details' | 'showcase_permanently_deleted_details' | 'showcase_post_comment_details' | 'showcase_remove_member_details' | 'showcase_renamed_details' | 'showcase_request_access_details' | 'showcase_resolve_comment_details' | 'showcase_restored_details' | 'showcase_trashed_details' | 'showcase_trashed_deprecated_details' | 'showcase_unresolve_comment_details' | 'showcase_untrashed_details' | 'showcase_untrashed_deprecated_details' | 'showcase_view_details' | 'sso_add_cert_details' | 'sso_add_login_url_details' | 'sso_add_logout_url_details' | 'sso_change_cert_details' | 'sso_change_login_url_details' | 'sso_change_logout_url_details' | 'sso_change_saml_identity_mode_details' | 'sso_remove_cert_details' | 'sso_remove_login_url_details' | 'sso_remove_logout_url_details' | 'team_folder_change_status_details' | 'team_folder_create_details' | 'team_folder_downgrade_details' | 'team_folder_permanently_delete_details' | 'team_folder_rename_details' | 'team_selective_sync_settings_changed_details' | 'account_capture_change_policy_details' | 'admin_email_reminders_changed_details' | 'allow_download_disabled_details' | 'allow_download_enabled_details' | 'app_permissions_changed_details' | 'camera_uploads_policy_changed_details' | 'capture_transcript_policy_changed_details' | 'classification_change_policy_details' | 'computer_backup_policy_changed_details' | 'content_administration_policy_changed_details' | 'data_placement_restriction_change_policy_details' | 'data_placement_restriction_satisfy_policy_details' | 'device_approvals_add_exception_details' | 'device_approvals_change_desktop_policy_details' | 'device_approvals_change_mobile_policy_details' | 'device_approvals_change_overage_action_details' | 'device_approvals_change_unlink_action_details' | 'device_approvals_remove_exception_details' | 'directory_restrictions_add_members_details' | 'directory_restrictions_remove_members_details' | 'dropbox_passwords_policy_changed_details' | 'email_ingest_policy_changed_details' | 'emm_add_exception_details' | 'emm_change_policy_details' | 'emm_remove_exception_details' | 'extended_version_history_change_policy_details' | 'external_drive_backup_policy_changed_details' | 'file_comments_change_policy_details' | 'file_locking_policy_changed_details' | 'file_provider_migration_policy_changed_details' | 'file_requests_change_policy_details' | 'file_requests_emails_enabled_details' | 'file_requests_emails_restricted_to_team_only_details' | 'file_transfers_policy_changed_details' | 'folder_link_restriction_policy_changed_details' | 'google_sso_change_policy_details' | 'group_user_management_change_policy_details' | 'integration_policy_changed_details' | 'invite_acceptance_email_policy_changed_details' | 'member_requests_change_policy_details' | 'member_send_invite_policy_changed_details' | 'member_space_limits_add_exception_details' | 'member_space_limits_change_caps_type_policy_details' | 'member_space_limits_change_policy_details' | 'member_space_limits_remove_exception_details' | 'member_suggestions_change_policy_details' | 'microsoft_office_addin_change_policy_details' | 'network_control_change_policy_details' | 'paper_change_deployment_policy_details' | 'paper_change_member_link_policy_details' | 'paper_change_member_policy_details' | 'paper_change_policy_details' | 'paper_default_folder_policy_changed_details' | 'paper_desktop_policy_changed_details' | 'paper_enabled_users_group_addition_details' | 'paper_enabled_users_group_removal_details' | 'password_strength_requirements_change_policy_details' | 'permanent_delete_change_policy_details' | 'reseller_support_change_policy_details' | 'rewind_policy_changed_details' | 'send_for_signature_policy_changed_details' | 'sharing_change_folder_join_policy_details' | 'sharing_change_link_allow_change_expiration_policy_details' | 'sharing_change_link_default_expiration_policy_details' | 'sharing_change_link_enforce_password_policy_details' | 'sharing_change_link_policy_details' | 'sharing_change_member_policy_details' | 'showcase_change_download_policy_details' | 'showcase_change_enabled_policy_details' | 'showcase_change_external_sharing_policy_details' | 'smarter_smart_sync_policy_changed_details' | 'smart_sync_change_policy_details' | 'smart_sync_not_opt_out_details' | 'smart_sync_opt_out_details' | 'sso_change_policy_details' | 'team_branding_policy_changed_details' | 'team_extensions_policy_changed_details' | 'team_selective_sync_policy_changed_details' | 'team_sharing_whitelist_subjects_changed_details' | 'tfa_add_exception_details' | 'tfa_change_policy_details' | 'tfa_remove_exception_details' | 'two_account_change_policy_details' | 'viewer_info_policy_changed_details' | 'watermarking_policy_changed_details' | 'web_sessions_change_active_session_limit_details' | 'web_sessions_change_fixed_length_policy_details' | 'web_sessions_change_idle_length_policy_details' | 'data_residency_migration_request_successful_details' | 'data_residency_migration_request_unsuccessful_details' | 'team_merge_from_details' | 'team_merge_to_details' | 'team_profile_add_background_details' | 'team_profile_add_logo_details' | 'team_profile_change_background_details' | 'team_profile_change_default_language_details' | 'team_profile_change_logo_details' | 'team_profile_change_name_details' | 'team_profile_remove_background_details' | 'team_profile_remove_logo_details' | 'tfa_add_backup_phone_details' | 'tfa_add_security_key_details' | 'tfa_change_backup_phone_details' | 'tfa_change_status_details' | 'tfa_remove_backup_phone_details' | 'tfa_remove_security_key_details' | 'tfa_reset_details' | 'changed_enterprise_admin_role_details' | 'changed_enterprise_connected_team_status_details' | 'ended_enterprise_admin_session_details' | 'ended_enterprise_admin_session_deprecated_details' | 'enterprise_settings_locking_details' | 'guest_admin_change_status_details' | 'started_enterprise_admin_session_details' | 'team_merge_request_accepted_details' | 'team_merge_request_accepted_shown_to_primary_team_details' | 'team_merge_request_accepted_shown_to_secondary_team_details' | 'team_merge_request_auto_canceled_details' | 'team_merge_request_canceled_details' | 'team_merge_request_canceled_shown_to_primary_team_details' | 'team_merge_request_canceled_shown_to_secondary_team_details' | 'team_merge_request_expired_details' | 'team_merge_request_expired_shown_to_primary_team_details' | 'team_merge_request_expired_shown_to_secondary_team_details' | 'team_merge_request_rejected_shown_to_primary_team_details' | 'team_merge_request_rejected_shown_to_secondary_team_details' | 'team_merge_request_reminder_details' | 'team_merge_request_reminder_shown_to_primary_team_details' | 'team_merge_request_reminder_shown_to_secondary_team_details' | 'team_merge_request_revoked_details' | 'team_merge_request_sent_shown_to_primary_team_details' | 'team_merge_request_sent_shown_to_secondary_team_details' | 'missing_details' | 'other' Tag identifying the union variant. -
TeamLogEventType
-
The type of the event with description.
Type:
- Object
Properties:
Name Type Argument Description admin_alerting_alert_state_changedTeamLogAdminAlertingAlertStateChangedType <optional>
Available if .tag is admin_alerting_alert_state_changed. (admin_alerting) Changed an alert state admin_alerting_changed_alert_configTeamLogAdminAlertingChangedAlertConfigType <optional>
Available if .tag is admin_alerting_changed_alert_config. (admin_alerting) Changed an alert setting admin_alerting_triggered_alertTeamLogAdminAlertingTriggeredAlertType <optional>
Available if .tag is admin_alerting_triggered_alert. (admin_alerting) Triggered security alert app_blocked_by_permissionsTeamLogAppBlockedByPermissionsType <optional>
Available if .tag is app_blocked_by_permissions. (apps) Failed to connect app for member app_link_teamTeamLogAppLinkTeamType <optional>
Available if .tag is app_link_team. (apps) Linked app for team app_link_userTeamLogAppLinkUserType <optional>
Available if .tag is app_link_user. (apps) Linked app for member app_unlink_teamTeamLogAppUnlinkTeamType <optional>
Available if .tag is app_unlink_team. (apps) Unlinked app for team app_unlink_userTeamLogAppUnlinkUserType <optional>
Available if .tag is app_unlink_user. (apps) Unlinked app for member integration_connectedTeamLogIntegrationConnectedType <optional>
Available if .tag is integration_connected. (apps) Connected integration for member integration_disconnectedTeamLogIntegrationDisconnectedType <optional>
Available if .tag is integration_disconnected. (apps) Disconnected integration for member file_add_commentTeamLogFileAddCommentType <optional>
Available if .tag is file_add_comment. (comments) Added file comment file_change_comment_subscriptionTeamLogFileChangeCommentSubscriptionType <optional>
Available if .tag is file_change_comment_subscription. (comments) Subscribed to or unsubscribed from comment notifications for file file_delete_commentTeamLogFileDeleteCommentType <optional>
Available if .tag is file_delete_comment. (comments) Deleted file comment file_edit_commentTeamLogFileEditCommentType <optional>
Available if .tag is file_edit_comment. (comments) Edited file comment file_like_commentTeamLogFileLikeCommentType <optional>
Available if .tag is file_like_comment. (comments) Liked file comment (deprecated, no longer logged) file_resolve_commentTeamLogFileResolveCommentType <optional>
Available if .tag is file_resolve_comment. (comments) Resolved file comment file_unlike_commentTeamLogFileUnlikeCommentType <optional>
Available if .tag is file_unlike_comment. (comments) Unliked file comment (deprecated, no longer logged) file_unresolve_commentTeamLogFileUnresolveCommentType <optional>
Available if .tag is file_unresolve_comment. (comments) Unresolved file comment governance_policy_add_foldersTeamLogGovernancePolicyAddFoldersType <optional>
Available if .tag is governance_policy_add_folders. (data_governance) Added folders to policy governance_policy_add_folder_failedTeamLogGovernancePolicyAddFolderFailedType <optional>
Available if .tag is governance_policy_add_folder_failed. (data_governance) Couldn't add a folder to a policy governance_policy_content_disposedTeamLogGovernancePolicyContentDisposedType <optional>
Available if .tag is governance_policy_content_disposed. (data_governance) Content disposed governance_policy_createTeamLogGovernancePolicyCreateType <optional>
Available if .tag is governance_policy_create. (data_governance) Activated a new policy governance_policy_deleteTeamLogGovernancePolicyDeleteType <optional>
Available if .tag is governance_policy_delete. (data_governance) Deleted a policy governance_policy_edit_detailsTeamLogGovernancePolicyEditDetailsType <optional>
Available if .tag is governance_policy_edit_details. (data_governance) Edited policy governance_policy_edit_durationTeamLogGovernancePolicyEditDurationType <optional>
Available if .tag is governance_policy_edit_duration. (data_governance) Changed policy duration governance_policy_export_createdTeamLogGovernancePolicyExportCreatedType <optional>
Available if .tag is governance_policy_export_created. (data_governance) Created a policy download governance_policy_export_removedTeamLogGovernancePolicyExportRemovedType <optional>
Available if .tag is governance_policy_export_removed. (data_governance) Removed a policy download governance_policy_remove_foldersTeamLogGovernancePolicyRemoveFoldersType <optional>
Available if .tag is governance_policy_remove_folders. (data_governance) Removed folders from policy governance_policy_report_createdTeamLogGovernancePolicyReportCreatedType <optional>
Available if .tag is governance_policy_report_created. (data_governance) Created a summary report for a policy governance_policy_zip_part_downloadedTeamLogGovernancePolicyZipPartDownloadedType <optional>
Available if .tag is governance_policy_zip_part_downloaded. (data_governance) Downloaded content from a policy legal_holds_activate_a_holdTeamLogLegalHoldsActivateAHoldType <optional>
- Available if .tag is legal_holds_activate_a_hold. (data_governance) Activated a hold legal_holds_add_membersTeamLogLegalHoldsAddMembersType <optional>
Available if .tag is legal_holds_add_members. (data_governance) Added members to a hold legal_holds_change_hold_detailsTeamLogLegalHoldsChangeHoldDetailsType <optional>
Available if .tag is legal_holds_change_hold_details. (data_governance) Edited details for a hold legal_holds_change_hold_nameTeamLogLegalHoldsChangeHoldNameType <optional>
Available if .tag is legal_holds_change_hold_name. (data_governance) Renamed a hold legal_holds_export_a_holdTeamLogLegalHoldsExportAHoldType <optional>
Available if .tag is legal_holds_export_a_hold. (data_governance) Exported hold legal_holds_export_cancelledTeamLogLegalHoldsExportCancelledType <optional>
Available if .tag is legal_holds_export_cancelled. (data_governance) Canceled export for a hold legal_holds_export_downloadedTeamLogLegalHoldsExportDownloadedType <optional>
Available if .tag is legal_holds_export_downloaded. (data_governance) Downloaded export for a hold legal_holds_export_removedTeamLogLegalHoldsExportRemovedType <optional>
Available if .tag is legal_holds_export_removed. (data_governance) Removed export for a hold legal_holds_release_a_holdTeamLogLegalHoldsReleaseAHoldType <optional>
Available if .tag is legal_holds_release_a_hold. (data_governance) Released a hold legal_holds_remove_membersTeamLogLegalHoldsRemoveMembersType <optional>
Available if .tag is legal_holds_remove_members. (data_governance) Removed members from a hold legal_holds_report_a_holdTeamLogLegalHoldsReportAHoldType <optional>
Available if .tag is legal_holds_report_a_hold. (data_governance) Created a summary report for a hold device_change_ip_desktopTeamLogDeviceChangeIpDesktopType <optional>
Available if .tag is device_change_ip_desktop. (devices) Changed IP address associated with active desktop session device_change_ip_mobileTeamLogDeviceChangeIpMobileType <optional>
Available if .tag is device_change_ip_mobile. (devices) Changed IP address associated with active mobile session device_change_ip_webTeamLogDeviceChangeIpWebType <optional>
Available if .tag is device_change_ip_web. (devices) Changed IP address associated with active web session device_delete_on_unlink_failTeamLogDeviceDeleteOnUnlinkFailType <optional>
Available if .tag is device_delete_on_unlink_fail. (devices) Failed to delete all files from unlinked device device_delete_on_unlink_successTeamLogDeviceDeleteOnUnlinkSuccessType <optional>
Available if .tag is device_delete_on_unlink_success. (devices) Deleted all files from unlinked device device_link_failTeamLogDeviceLinkFailType <optional>
Available if .tag is device_link_fail. (devices) Failed to link device device_link_successTeamLogDeviceLinkSuccessType <optional>
Available if .tag is device_link_success. (devices) Linked device device_management_disabledTeamLogDeviceManagementDisabledType <optional>
- Available if .tag is device_management_disabled. (devices) Disabled device management (deprecated, no longer logged) device_management_enabledTeamLogDeviceManagementEnabledType <optional>
Available if .tag is device_management_enabled. (devices) Enabled device management (deprecated, no longer logged) device_sync_backup_status_changedTeamLogDeviceSyncBackupStatusChangedType <optional>
Available if .tag is device_sync_backup_status_changed. (devices) Enabled/disabled backup for computer device_unlinkTeamLogDeviceUnlinkType <optional>
Available if .tag is device_unlink. (devices) Disconnected device dropbox_passwords_exportedTeamLogDropboxPasswordsExportedType <optional>
- Available if .tag is dropbox_passwords_exported. (devices) Exported passwords dropbox_passwords_new_device_enrolledTeamLogDropboxPasswordsNewDeviceEnrolledType <optional>
Available if .tag is dropbox_passwords_new_device_enrolled. (devices) Enrolled new Dropbox Passwords device emm_refresh_auth_tokenTeamLogEmmRefreshAuthTokenType <optional>
Available if .tag is emm_refresh_auth_token. (devices) Refreshed auth token used for setting up EMM external_drive_backup_eligibility_status_checkedTeamLogExternalDriveBackupEligibilityStatusCheckedType <optional>
Available if .tag is external_drive_backup_eligibility_status_checked. (devices) Checked external drive backup eligibility status external_drive_backup_status_changedTeamLogExternalDriveBackupStatusChangedType <optional>
Available if .tag is external_drive_backup_status_changed. (devices) Modified external drive backup account_capture_change_availabilityTeamLogAccountCaptureChangeAvailabilityType <optional>
Available if .tag is account_capture_change_availability. (domains) Granted/revoked option to enable account capture on team domains account_capture_migrate_accountTeamLogAccountCaptureMigrateAccountType <optional>
Available if .tag is account_capture_migrate_account. (domains) Account-captured user migrated account to team account_capture_notification_emails_sentTeamLogAccountCaptureNotificationEmailsSentType <optional>
Available if .tag is account_capture_notification_emails_sent. (domains) Sent account capture email to all unmanaged members account_capture_relinquish_accountTeamLogAccountCaptureRelinquishAccountType <optional>
Available if .tag is account_capture_relinquish_account. (domains) Account-captured user changed account email to personal email disabled_domain_invitesTeamLogDisabledDomainInvitesType <optional>
Available if .tag is disabled_domain_invites. (domains) Disabled domain invites (deprecated, no longer logged) domain_invites_approve_request_to_join_teamTeamLogDomainInvitesApproveRequestToJoinTeamType <optional>
Available if .tag is domain_invites_approve_request_to_join_team. (domains) Approved user's request to join team domain_invites_decline_request_to_join_teamTeamLogDomainInvitesDeclineRequestToJoinTeamType <optional>
Available if .tag is domain_invites_decline_request_to_join_team. (domains) Declined user's request to join team domain_invites_email_existing_usersTeamLogDomainInvitesEmailExistingUsersType <optional>
Available if .tag is domain_invites_email_existing_users. (domains) Sent domain invites to existing domain accounts (deprecated, no longer logged) domain_invites_request_to_join_teamTeamLogDomainInvitesRequestToJoinTeamType <optional>
Available if .tag is domain_invites_request_to_join_team. (domains) Requested to join team domain_invites_set_invite_new_user_pref_to_noTeamLogDomainInvitesSetInviteNewUserPrefToNoType <optional>
Available if .tag is domain_invites_set_invite_new_user_pref_to_no. (domains) Disabled "Automatically invite new users" (deprecated, no longer logged) domain_invites_set_invite_new_user_pref_to_yesTeamLogDomainInvitesSetInviteNewUserPrefToYesType <optional>
Available if .tag is domain_invites_set_invite_new_user_pref_to_yes. (domains) Enabled "Automatically invite new users" (deprecated, no longer logged) domain_verification_add_domain_failTeamLogDomainVerificationAddDomainFailType <optional>
Available if .tag is domain_verification_add_domain_fail. (domains) Failed to verify team domain domain_verification_add_domain_successTeamLogDomainVerificationAddDomainSuccessType <optional>
Available if .tag is domain_verification_add_domain_success. (domains) Verified team domain domain_verification_remove_domainTeamLogDomainVerificationRemoveDomainType <optional>
Available if .tag is domain_verification_remove_domain. (domains) Removed domain from list of verified team domains enabled_domain_invitesTeamLogEnabledDomainInvitesType <optional>
Available if .tag is enabled_domain_invites. (domains) Enabled domain invites (deprecated, no longer logged) apply_naming_conventionTeamLogApplyNamingConventionType <optional>
Available if .tag is apply_naming_convention. (file_operations) Applied naming convention create_folderTeamLogCreateFolderType <optional>
Available if .tag is create_folder. (file_operations) Created folders (deprecated, no longer logged) file_addTeamLogFileAddType <optional>
Available if .tag is file_add. (file_operations) Added files and/or folders file_copyTeamLogFileCopyType <optional>
Available if .tag is file_copy. (file_operations) Copied files and/or folders file_deleteTeamLogFileDeleteType <optional>
Available if .tag is file_delete. (file_operations) Deleted files and/or folders file_downloadTeamLogFileDownloadType <optional>
Available if .tag is file_download. (file_operations) Downloaded files and/or folders file_editTeamLogFileEditType <optional>
Available if .tag is file_edit. (file_operations) Edited files file_get_copy_referenceTeamLogFileGetCopyReferenceType <optional>
Available if .tag is file_get_copy_reference. (file_operations) Created copy reference to file/folder file_locking_lock_status_changedTeamLogFileLockingLockStatusChangedType <optional>
Available if .tag is file_locking_lock_status_changed. (file_operations) Locked/unlocked editing for a file file_moveTeamLogFileMoveType <optional>
Available if .tag is file_move. (file_operations) Moved files and/or folders file_permanently_deleteTeamLogFilePermanentlyDeleteType <optional>
Available if .tag is file_permanently_delete. (file_operations) Permanently deleted files and/or folders file_previewTeamLogFilePreviewType <optional>
Available if .tag is file_preview. (file_operations) Previewed files and/or folders file_renameTeamLogFileRenameType <optional>
Available if .tag is file_rename. (file_operations) Renamed files and/or folders file_restoreTeamLogFileRestoreType <optional>
Available if .tag is file_restore. (file_operations) Restored deleted files and/or folders file_revertTeamLogFileRevertType <optional>
Available if .tag is file_revert. (file_operations) Reverted files to previous version file_rollback_changesTeamLogFileRollbackChangesType <optional>
Available if .tag is file_rollback_changes. (file_operations) Rolled back file actions file_save_copy_referenceTeamLogFileSaveCopyReferenceType <optional>
Available if .tag is file_save_copy_reference. (file_operations) Saved file/folder using copy reference folder_overview_description_changedTeamLogFolderOverviewDescriptionChangedType <optional>
Available if .tag is folder_overview_description_changed. (file_operations) Updated folder overview folder_overview_item_pinnedTeamLogFolderOverviewItemPinnedType <optional>
- Available if .tag is folder_overview_item_pinned. (file_operations) Pinned item to folder overview folder_overview_item_unpinnedTeamLogFolderOverviewItemUnpinnedType <optional>
Available if .tag is folder_overview_item_unpinned. (file_operations) Unpinned item from folder overview object_label_addedTeamLogObjectLabelAddedType <optional>
Available if .tag is object_label_added. (file_operations) Added a label object_label_removedTeamLogObjectLabelRemovedType <optional>
Available if .tag is object_label_removed. (file_operations) Removed a label object_label_updated_valueTeamLogObjectLabelUpdatedValueType <optional>
Available if .tag is object_label_updated_value. (file_operations) Updated a label's value organize_folder_with_tidyTeamLogOrganizeFolderWithTidyType <optional>
Available if .tag is organize_folder_with_tidy. (file_operations) Organized a folder with multi-file organize rewind_folderTeamLogRewindFolderType <optional>
Available if .tag is rewind_folder. (file_operations) Rewound a folder undo_naming_conventionTeamLogUndoNamingConventionType <optional>
Available if .tag is undo_naming_convention. (file_operations) Reverted naming convention undo_organize_folder_with_tidyTeamLogUndoOrganizeFolderWithTidyType <optional>
Available if .tag is undo_organize_folder_with_tidy. (file_operations) Removed multi-file organize user_tags_addedTeamLogUserTagsAddedType <optional>
Available if .tag is user_tags_added. (file_operations) Tagged a file user_tags_removedTeamLogUserTagsRemovedType <optional>
Available if .tag is user_tags_removed. (file_operations) Removed tags email_ingest_receive_fileTeamLogEmailIngestReceiveFileType <optional>
Available if .tag is email_ingest_receive_file. (file_requests) Received files via Email to Dropbox file_request_changeTeamLogFileRequestChangeType <optional>
Available if .tag is file_request_change. (file_requests) Changed file request file_request_closeTeamLogFileRequestCloseType <optional>
Available if .tag is file_request_close. (file_requests) Closed file request file_request_createTeamLogFileRequestCreateType <optional>
Available if .tag is file_request_create. (file_requests) Created file request file_request_deleteTeamLogFileRequestDeleteType <optional>
Available if .tag is file_request_delete. (file_requests) Delete file request file_request_receive_fileTeamLogFileRequestReceiveFileType <optional>
Available if .tag is file_request_receive_file. (file_requests) Received files for file request group_add_external_idTeamLogGroupAddExternalIdType <optional>
Available if .tag is group_add_external_id. (groups) Added external ID for group group_add_memberTeamLogGroupAddMemberType <optional>
Available if .tag is group_add_member. (groups) Added team members to group group_change_external_idTeamLogGroupChangeExternalIdType <optional>
Available if .tag is group_change_external_id. (groups) Changed external ID for group group_change_management_typeTeamLogGroupChangeManagementTypeType <optional>
Available if .tag is group_change_management_type. (groups) Changed group management type group_change_member_roleTeamLogGroupChangeMemberRoleType <optional>
Available if .tag is group_change_member_role. (groups) Changed manager permissions of group member group_createTeamLogGroupCreateType <optional>
Available if .tag is group_create. (groups) Created group group_deleteTeamLogGroupDeleteType <optional>
Available if .tag is group_delete. (groups) Deleted group group_description_updatedTeamLogGroupDescriptionUpdatedType <optional>
Available if .tag is group_description_updated. (groups) Updated group (deprecated, no longer logged) group_join_policy_updatedTeamLogGroupJoinPolicyUpdatedType <optional>
Available if .tag is group_join_policy_updated. (groups) Updated group join policy (deprecated, no longer logged) group_movedTeamLogGroupMovedType <optional>
Available if .tag is group_moved. (groups) Moved group (deprecated, no longer logged) group_remove_external_idTeamLogGroupRemoveExternalIdType <optional>
Available if .tag is group_remove_external_id. (groups) Removed external ID for group group_remove_memberTeamLogGroupRemoveMemberType <optional>
Available if .tag is group_remove_member. (groups) Removed team members from group group_renameTeamLogGroupRenameType <optional>
Available if .tag is group_rename. (groups) Renamed group account_lock_or_unlockedTeamLogAccountLockOrUnlockedType <optional>
Available if .tag is account_lock_or_unlocked. (logins) Unlocked/locked account after failed sign in attempts emm_errorTeamLogEmmErrorType <optional>
Available if .tag is emm_error. (logins) Failed to sign in via EMM (deprecated, replaced by 'Failed to sign in') guest_admin_signed_in_via_trusted_teamsTeamLogGuestAdminSignedInViaTrustedTeamsType <optional>
Available if .tag is guest_admin_signed_in_via_trusted_teams. (logins) Started trusted team admin session guest_admin_signed_out_via_trusted_teamsTeamLogGuestAdminSignedOutViaTrustedTeamsType <optional>
Available if .tag is guest_admin_signed_out_via_trusted_teams. (logins) Ended trusted team admin session login_failTeamLogLoginFailType <optional>
Available if .tag is login_fail. (logins) Failed to sign in login_successTeamLogLoginSuccessType <optional>
Available if .tag is login_success. (logins) Signed in logoutTeamLogLogoutType <optional>
Available if .tag is logout. (logins) Signed out reseller_support_session_endTeamLogResellerSupportSessionEndType <optional>
Available if .tag is reseller_support_session_end. (logins) Ended reseller support session reseller_support_session_startTeamLogResellerSupportSessionStartType <optional>
Available if .tag is reseller_support_session_start. (logins) Started reseller support session sign_in_as_session_endTeamLogSignInAsSessionEndType <optional>
Available if .tag is sign_in_as_session_end. (logins) Ended admin sign-in-as session sign_in_as_session_startTeamLogSignInAsSessionStartType <optional>
Available if .tag is sign_in_as_session_start. (logins) Started admin sign-in-as session sso_errorTeamLogSsoErrorType <optional>
Available if .tag is sso_error. (logins) Failed to sign in via SSO (deprecated, replaced by 'Failed to sign in') create_team_invite_linkTeamLogCreateTeamInviteLinkType <optional>
Available if .tag is create_team_invite_link. (members) Created team invite link delete_team_invite_linkTeamLogDeleteTeamInviteLinkType <optional>
Available if .tag is delete_team_invite_link. (members) Deleted team invite link member_add_external_idTeamLogMemberAddExternalIdType <optional>
Available if .tag is member_add_external_id. (members) Added an external ID for team member member_add_nameTeamLogMemberAddNameType <optional>
Available if .tag is member_add_name. (members) Added team member name member_change_admin_roleTeamLogMemberChangeAdminRoleType <optional>
Available if .tag is member_change_admin_role. (members) Changed team member admin role member_change_emailTeamLogMemberChangeEmailType <optional>
Available if .tag is member_change_email. (members) Changed team member email member_change_external_idTeamLogMemberChangeExternalIdType <optional>
Available if .tag is member_change_external_id. (members) Changed the external ID for team member member_change_membership_typeTeamLogMemberChangeMembershipTypeType <optional>
Available if .tag is member_change_membership_type. (members) Changed membership type (limited/full) of member (deprecated, no longer logged) member_change_nameTeamLogMemberChangeNameType <optional>
Available if .tag is member_change_name. (members) Changed team member name member_change_reseller_roleTeamLogMemberChangeResellerRoleType <optional>
- Available if .tag is member_change_reseller_role. (members) Changed team member reseller role member_change_statusTeamLogMemberChangeStatusType <optional>
Available if .tag is member_change_status. (members) Changed member status (invited, joined, suspended, etc.) member_delete_manual_contactsTeamLogMemberDeleteManualContactsType <optional>
Available if .tag is member_delete_manual_contacts. (members) Cleared manually added contacts member_delete_profile_photoTeamLogMemberDeleteProfilePhotoType <optional>
- Available if .tag is member_delete_profile_photo. (members) Deleted team member profile photo member_permanently_delete_account_contentsTeamLogMemberPermanentlyDeleteAccountContentsType <optional>
Available if .tag is member_permanently_delete_account_contents. (members) Permanently deleted contents of deleted team member account member_remove_external_idTeamLogMemberRemoveExternalIdType <optional>
Available if .tag is member_remove_external_id. (members) Removed the external ID for team member member_set_profile_photoTeamLogMemberSetProfilePhotoType <optional>
Available if .tag is member_set_profile_photo. (members) Set team member profile photo member_space_limits_add_custom_quotaTeamLogMemberSpaceLimitsAddCustomQuotaType <optional>
Available if .tag is member_space_limits_add_custom_quota. (members) Set custom member space limit member_space_limits_change_custom_quotaTeamLogMemberSpaceLimitsChangeCustomQuotaType <optional>
Available if .tag is member_space_limits_change_custom_quota. (members) Changed custom member space limit member_space_limits_change_statusTeamLogMemberSpaceLimitsChangeStatusType <optional>
Available if .tag is member_space_limits_change_status. (members) Changed space limit status member_space_limits_remove_custom_quotaTeamLogMemberSpaceLimitsRemoveCustomQuotaType <optional>
Available if .tag is member_space_limits_remove_custom_quota. (members) Removed custom member space limit member_suggestTeamLogMemberSuggestType <optional>
Available if .tag is member_suggest. (members) Suggested person to add to team member_transfer_account_contentsTeamLogMemberTransferAccountContentsType <optional>
Available if .tag is member_transfer_account_contents. (members) Transferred contents of deleted member account to another member pending_secondary_email_addedTeamLogPendingSecondaryEmailAddedType <optional>
Available if .tag is pending_secondary_email_added. (members) Added pending secondary email secondary_email_deletedTeamLogSecondaryEmailDeletedType <optional>
Available if .tag is secondary_email_deleted. (members) Deleted secondary email secondary_email_verifiedTeamLogSecondaryEmailVerifiedType <optional>
Available if .tag is secondary_email_verified. (members) Verified secondary email secondary_mails_policy_changedTeamLogSecondaryMailsPolicyChangedType <optional>
Available if .tag is secondary_mails_policy_changed. (members) Secondary mails policy changed binder_add_pageTeamLogBinderAddPageType <optional>
Available if .tag is binder_add_page. (paper) Added Binder page (deprecated, replaced by 'Edited files') binder_add_sectionTeamLogBinderAddSectionType <optional>
Available if .tag is binder_add_section. (paper) Added Binder section (deprecated, replaced by 'Edited files') binder_remove_pageTeamLogBinderRemovePageType <optional>
Available if .tag is binder_remove_page. (paper) Removed Binder page (deprecated, replaced by 'Edited files') binder_remove_sectionTeamLogBinderRemoveSectionType <optional>
Available if .tag is binder_remove_section. (paper) Removed Binder section (deprecated, replaced by 'Edited files') binder_rename_pageTeamLogBinderRenamePageType <optional>
Available if .tag is binder_rename_page. (paper) Renamed Binder page (deprecated, replaced by 'Edited files') binder_rename_sectionTeamLogBinderRenameSectionType <optional>
Available if .tag is binder_rename_section. (paper) Renamed Binder section (deprecated, replaced by 'Edited files') binder_reorder_pageTeamLogBinderReorderPageType <optional>
Available if .tag is binder_reorder_page. (paper) Reordered Binder page (deprecated, replaced by 'Edited files') binder_reorder_sectionTeamLogBinderReorderSectionType <optional>
Available if .tag is binder_reorder_section. (paper) Reordered Binder section (deprecated, replaced by 'Edited files') paper_content_add_memberTeamLogPaperContentAddMemberType <optional>
Available if .tag is paper_content_add_member. (paper) Added users and/or groups to Paper doc/folder paper_content_add_to_folderTeamLogPaperContentAddToFolderType <optional>
- Available if .tag is paper_content_add_to_folder. (paper) Added Paper doc/folder to folder paper_content_archiveTeamLogPaperContentArchiveType <optional>
Available if .tag is paper_content_archive. (paper) Archived Paper doc/folder paper_content_createTeamLogPaperContentCreateType <optional>
Available if .tag is paper_content_create. (paper) Created Paper doc/folder paper_content_permanently_deleteTeamLogPaperContentPermanentlyDeleteType <optional>
Available if .tag is paper_content_permanently_delete. (paper) Permanently deleted Paper doc/folder paper_content_remove_from_folderTeamLogPaperContentRemoveFromFolderType <optional>
Available if .tag is paper_content_remove_from_folder. (paper) Removed Paper doc/folder from folder paper_content_remove_memberTeamLogPaperContentRemoveMemberType <optional>
- Available if .tag is paper_content_remove_member. (paper) Removed users and/or groups from Paper doc/folder paper_content_renameTeamLogPaperContentRenameType <optional>
Available if .tag is paper_content_rename. (paper) Renamed Paper doc/folder paper_content_restoreTeamLogPaperContentRestoreType <optional>
Available if .tag is paper_content_restore. (paper) Restored archived Paper doc/folder paper_doc_add_commentTeamLogPaperDocAddCommentType <optional>
Available if .tag is paper_doc_add_comment. (paper) Added Paper doc comment paper_doc_change_member_roleTeamLogPaperDocChangeMemberRoleType <optional>
Available if .tag is paper_doc_change_member_role. (paper) Changed member permissions for Paper doc paper_doc_change_sharing_policyTeamLogPaperDocChangeSharingPolicyType <optional>
Available if .tag is paper_doc_change_sharing_policy. (paper) Changed sharing setting for Paper doc paper_doc_change_subscriptionTeamLogPaperDocChangeSubscriptionType <optional>
Available if .tag is paper_doc_change_subscription. (paper) Followed/unfollowed Paper doc paper_doc_deletedTeamLogPaperDocDeletedType <optional>
Available if .tag is paper_doc_deleted. (paper) Archived Paper doc (deprecated, no longer logged) paper_doc_delete_commentTeamLogPaperDocDeleteCommentType <optional>
Available if .tag is paper_doc_delete_comment. (paper) Deleted Paper doc comment paper_doc_downloadTeamLogPaperDocDownloadType <optional>
Available if .tag is paper_doc_download. (paper) Downloaded Paper doc in specific format paper_doc_editTeamLogPaperDocEditType <optional>
Available if .tag is paper_doc_edit. (paper) Edited Paper doc paper_doc_edit_commentTeamLogPaperDocEditCommentType <optional>
Available if .tag is paper_doc_edit_comment. (paper) Edited Paper doc comment paper_doc_followedTeamLogPaperDocFollowedType <optional>
Available if .tag is paper_doc_followed. (paper) Followed Paper doc (deprecated, replaced by 'Followed/unfollowed Paper doc') paper_doc_mentionTeamLogPaperDocMentionType <optional>
Available if .tag is paper_doc_mention. (paper) Mentioned user in Paper doc paper_doc_ownership_changedTeamLogPaperDocOwnershipChangedType <optional>
- Available if .tag is paper_doc_ownership_changed. (paper) Transferred ownership of Paper doc paper_doc_request_accessTeamLogPaperDocRequestAccessType <optional>
Available if .tag is paper_doc_request_access. (paper) Requested access to Paper doc paper_doc_resolve_commentTeamLogPaperDocResolveCommentType <optional>
Available if .tag is paper_doc_resolve_comment. (paper) Resolved Paper doc comment paper_doc_revertTeamLogPaperDocRevertType <optional>
Available if .tag is paper_doc_revert. (paper) Restored Paper doc to previous version paper_doc_slack_shareTeamLogPaperDocSlackShareType <optional>
Available if .tag is paper_doc_slack_share. (paper) Shared Paper doc via Slack paper_doc_team_inviteTeamLogPaperDocTeamInviteType <optional>
Available if .tag is paper_doc_team_invite. (paper) Shared Paper doc with users and/or groups (deprecated, no longer logged) paper_doc_trashedTeamLogPaperDocTrashedType <optional>
Available if .tag is paper_doc_trashed. (paper) Deleted Paper doc paper_doc_unresolve_commentTeamLogPaperDocUnresolveCommentType <optional>
- Available if .tag is paper_doc_unresolve_comment. (paper) Unresolved Paper doc comment paper_doc_untrashedTeamLogPaperDocUntrashedType <optional>
Available if .tag is paper_doc_untrashed. (paper) Restored Paper doc paper_doc_viewTeamLogPaperDocViewType <optional>
Available if .tag is paper_doc_view. (paper) Viewed Paper doc paper_external_view_allowTeamLogPaperExternalViewAllowType <optional>
Available if .tag is paper_external_view_allow. (paper) Changed Paper external sharing setting to anyone (deprecated, no longer logged) paper_external_view_default_teamTeamLogPaperExternalViewDefaultTeamType <optional>
Available if .tag is paper_external_view_default_team. (paper) Changed Paper external sharing setting to default team (deprecated, no longer logged) paper_external_view_forbidTeamLogPaperExternalViewForbidType <optional>
Available if .tag is paper_external_view_forbid. (paper) Changed Paper external sharing setting to team-only (deprecated, no longer logged) paper_folder_change_subscriptionTeamLogPaperFolderChangeSubscriptionType <optional>
Available if .tag is paper_folder_change_subscription. (paper) Followed/unfollowed Paper folder paper_folder_deletedTeamLogPaperFolderDeletedType <optional>
Available if .tag is paper_folder_deleted. (paper) Archived Paper folder (deprecated, no longer logged) paper_folder_followedTeamLogPaperFolderFollowedType <optional>
Available if .tag is paper_folder_followed. (paper) Followed Paper folder (deprecated, replaced by 'Followed/unfollowed Paper folder') paper_folder_team_inviteTeamLogPaperFolderTeamInviteType <optional>
Available if .tag is paper_folder_team_invite. (paper) Shared Paper folder with users and/or groups (deprecated, no longer logged) paper_published_link_change_permissionTeamLogPaperPublishedLinkChangePermissionType <optional>
Available if .tag is paper_published_link_change_permission. (paper) Changed permissions for published doc paper_published_link_createTeamLogPaperPublishedLinkCreateType <optional>
- Available if .tag is paper_published_link_create. (paper) Published doc paper_published_link_disabledTeamLogPaperPublishedLinkDisabledType <optional>
Available if .tag is paper_published_link_disabled. (paper) Unpublished doc paper_published_link_viewTeamLogPaperPublishedLinkViewType <optional>
Available if .tag is paper_published_link_view. (paper) Viewed published doc password_changeTeamLogPasswordChangeType <optional>
Available if .tag is password_change. (passwords) Changed password password_resetTeamLogPasswordResetType <optional>
Available if .tag is password_reset. (passwords) Reset password password_reset_allTeamLogPasswordResetAllType <optional>
Available if .tag is password_reset_all. (passwords) Reset all team member passwords classification_create_reportTeamLogClassificationCreateReportType <optional>
Available if .tag is classification_create_report. (reports) Created Classification report classification_create_report_failTeamLogClassificationCreateReportFailType <optional>
Available if .tag is classification_create_report_fail. (reports) Couldn't create Classification report emm_create_exceptions_reportTeamLogEmmCreateExceptionsReportType <optional>
Available if .tag is emm_create_exceptions_report. (reports) Created EMM-excluded users report emm_create_usage_reportTeamLogEmmCreateUsageReportType <optional>
Available if .tag is emm_create_usage_report. (reports) Created EMM mobile app usage report export_members_reportTeamLogExportMembersReportType <optional>
Available if .tag is export_members_report. (reports) Created member data report export_members_report_failTeamLogExportMembersReportFailType <optional>
Available if .tag is export_members_report_fail. (reports) Failed to create members data report external_sharing_create_reportTeamLogExternalSharingCreateReportType <optional>
Available if .tag is external_sharing_create_report. (reports) Created External sharing report external_sharing_report_failedTeamLogExternalSharingReportFailedType <optional>
Available if .tag is external_sharing_report_failed. (reports) Couldn't create External sharing report no_expiration_link_gen_create_reportTeamLogNoExpirationLinkGenCreateReportType <optional>
Available if .tag is no_expiration_link_gen_create_report. (reports) Report created: Links created with no expiration no_expiration_link_gen_report_failedTeamLogNoExpirationLinkGenReportFailedType <optional>
Available if .tag is no_expiration_link_gen_report_failed. (reports) Couldn't create report: Links created with no expiration no_password_link_gen_create_reportTeamLogNoPasswordLinkGenCreateReportType <optional>
Available if .tag is no_password_link_gen_create_report. (reports) Report created: Links created without passwords no_password_link_gen_report_failedTeamLogNoPasswordLinkGenReportFailedType <optional>
Available if .tag is no_password_link_gen_report_failed. (reports) Couldn't create report: Links created without passwords no_password_link_view_create_reportTeamLogNoPasswordLinkViewCreateReportType <optional>
Available if .tag is no_password_link_view_create_report. (reports) Report created: Views of links without passwords no_password_link_view_report_failedTeamLogNoPasswordLinkViewReportFailedType <optional>
Available if .tag is no_password_link_view_report_failed. (reports) Couldn't create report: Views of links without passwords outdated_link_view_create_reportTeamLogOutdatedLinkViewCreateReportType <optional>
Available if .tag is outdated_link_view_create_report. (reports) Report created: Views of old links outdated_link_view_report_failedTeamLogOutdatedLinkViewReportFailedType <optional>
Available if .tag is outdated_link_view_report_failed. (reports) Couldn't create report: Views of old links paper_admin_export_startTeamLogPaperAdminExportStartType <optional>
Available if .tag is paper_admin_export_start. (reports) Exported all team Paper docs smart_sync_create_admin_privilege_reportTeamLogSmartSyncCreateAdminPrivilegeReportType <optional>
Available if .tag is smart_sync_create_admin_privilege_report. (reports) Created Smart Sync non-admin devices report team_activity_create_reportTeamLogTeamActivityCreateReportType <optional>
- Available if .tag is team_activity_create_report. (reports) Created team activity report team_activity_create_report_failTeamLogTeamActivityCreateReportFailType <optional>
Available if .tag is team_activity_create_report_fail. (reports) Couldn't generate team activity report collection_shareTeamLogCollectionShareType <optional>
Available if .tag is collection_share. (sharing) Shared album file_transfers_file_addTeamLogFileTransfersFileAddType <optional>
Available if .tag is file_transfers_file_add. (sharing) Transfer files added file_transfers_transfer_deleteTeamLogFileTransfersTransferDeleteType <optional>
Available if .tag is file_transfers_transfer_delete. (sharing) Deleted transfer file_transfers_transfer_downloadTeamLogFileTransfersTransferDownloadType <optional>
Available if .tag is file_transfers_transfer_download. (sharing) Transfer downloaded file_transfers_transfer_sendTeamLogFileTransfersTransferSendType <optional>
Available if .tag is file_transfers_transfer_send. (sharing) Sent transfer file_transfers_transfer_viewTeamLogFileTransfersTransferViewType <optional>
Available if .tag is file_transfers_transfer_view. (sharing) Viewed transfer note_acl_invite_onlyTeamLogNoteAclInviteOnlyType <optional>
Available if .tag is note_acl_invite_only. (sharing) Changed Paper doc to invite-only (deprecated, no longer logged) note_acl_linkTeamLogNoteAclLinkType <optional>
Available if .tag is note_acl_link. (sharing) Changed Paper doc to link-accessible (deprecated, no longer logged) note_acl_team_linkTeamLogNoteAclTeamLinkType <optional>
Available if .tag is note_acl_team_link. (sharing) Changed Paper doc to link-accessible for team (deprecated, no longer logged) note_sharedTeamLogNoteSharedType <optional>
Available if .tag is note_shared. (sharing) Shared Paper doc (deprecated, no longer logged) note_share_receiveTeamLogNoteShareReceiveType <optional>
Available if .tag is note_share_receive. (sharing) Shared received Paper doc (deprecated, no longer logged) open_note_sharedTeamLogOpenNoteSharedType <optional>
Available if .tag is open_note_shared. (sharing) Opened shared Paper doc (deprecated, no longer logged) sf_add_groupTeamLogSfAddGroupType <optional>
Available if .tag is sf_add_group. (sharing) Added team to shared folder (deprecated, no longer logged) sf_allow_non_members_to_view_shared_linksTeamLogSfAllowNonMembersToViewSharedLinksType <optional>
Available if .tag is sf_allow_non_members_to_view_shared_links. (sharing) Allowed non-collaborators to view links to files in shared folder (deprecated, no longer logged) sf_external_invite_warnTeamLogSfExternalInviteWarnType <optional>
Available if .tag is sf_external_invite_warn. (sharing) Set team members to see warning before sharing folders outside team (deprecated, no longer logged) sf_fb_inviteTeamLogSfFbInviteType <optional>
Available if .tag is sf_fb_invite. (sharing) Invited Facebook users to shared folder (deprecated, no longer logged) sf_fb_invite_change_roleTeamLogSfFbInviteChangeRoleType <optional>
Available if .tag is sf_fb_invite_change_role. (sharing) Changed Facebook user's role in shared folder (deprecated, no longer logged) sf_fb_uninviteTeamLogSfFbUninviteType <optional>
Available if .tag is sf_fb_uninvite. (sharing) Uninvited Facebook user from shared folder (deprecated, no longer logged) sf_invite_groupTeamLogSfInviteGroupType <optional>
Available if .tag is sf_invite_group. (sharing) Invited group to shared folder (deprecated, no longer logged) sf_team_grant_accessTeamLogSfTeamGrantAccessType <optional>
Available if .tag is sf_team_grant_access. (sharing) Granted access to shared folder (deprecated, no longer logged) sf_team_inviteTeamLogSfTeamInviteType <optional>
Available if .tag is sf_team_invite. (sharing) Invited team members to shared folder (deprecated, replaced by 'Invited user to Dropbox and added them to shared file/folder') sf_team_invite_change_roleTeamLogSfTeamInviteChangeRoleType <optional>
Available if .tag is sf_team_invite_change_role. (sharing) Changed team member's role in shared folder (deprecated, no longer logged) sf_team_joinTeamLogSfTeamJoinType <optional>
Available if .tag is sf_team_join. (sharing) Joined team member's shared folder (deprecated, no longer logged) sf_team_join_from_oob_linkTeamLogSfTeamJoinFromOobLinkType <optional>
Available if .tag is sf_team_join_from_oob_link. (sharing) Joined team member's shared folder from link (deprecated, no longer logged) sf_team_uninviteTeamLogSfTeamUninviteType <optional>
Available if .tag is sf_team_uninvite. (sharing) Unshared folder with team member (deprecated, replaced by 'Removed invitee from shared file/folder before invite was accepted') shared_content_add_inviteesTeamLogSharedContentAddInviteesType <optional>
- Available if .tag is shared_content_add_invitees. (sharing) Invited user to Dropbox and added them to shared file/folder shared_content_add_link_expiryTeamLogSharedContentAddLinkExpiryType <optional>
Available if .tag is shared_content_add_link_expiry. (sharing) Added expiration date to link for shared file/folder (deprecated, no longer logged) shared_content_add_link_passwordTeamLogSharedContentAddLinkPasswordType <optional>
Available if .tag is shared_content_add_link_password. (sharing) Added password to link for shared file/folder (deprecated, no longer logged) shared_content_add_memberTeamLogSharedContentAddMemberType <optional>
Available if .tag is shared_content_add_member. (sharing) Added users and/or groups to shared file/folder shared_content_change_downloads_policyTeamLogSharedContentChangeDownloadsPolicyType <optional>
Available if .tag is shared_content_change_downloads_policy. (sharing) Changed whether members can download shared file/folder (deprecated, no longer logged) shared_content_change_invitee_roleTeamLogSharedContentChangeInviteeRoleType <optional>
Available if .tag is shared_content_change_invitee_role. (sharing) Changed access type of invitee to shared file/folder before invite was accepted shared_content_change_link_audienceTeamLogSharedContentChangeLinkAudienceType <optional>
Available if .tag is shared_content_change_link_audience. (sharing) Changed link audience of shared file/folder (deprecated, no longer logged) shared_content_change_link_expiryTeamLogSharedContentChangeLinkExpiryType <optional>
Available if .tag is shared_content_change_link_expiry. (sharing) Changed link expiration of shared file/folder (deprecated, no longer logged) shared_content_change_link_passwordTeamLogSharedContentChangeLinkPasswordType <optional>
Available if .tag is shared_content_change_link_password. (sharing) Changed link password of shared file/folder (deprecated, no longer logged) shared_content_change_member_roleTeamLogSharedContentChangeMemberRoleType <optional>
Available if .tag is shared_content_change_member_role. (sharing) Changed access type of shared file/folder member shared_content_change_viewer_info_policyTeamLogSharedContentChangeViewerInfoPolicyType <optional>
Available if .tag is shared_content_change_viewer_info_policy. (sharing) Changed whether members can see who viewed shared file/folder shared_content_claim_invitationTeamLogSharedContentClaimInvitationType <optional>
Available if .tag is shared_content_claim_invitation. (sharing) Acquired membership of shared file/folder by accepting invite shared_content_copyTeamLogSharedContentCopyType <optional>
Available if .tag is shared_content_copy. (sharing) Copied shared file/folder to own Dropbox shared_content_downloadTeamLogSharedContentDownloadType <optional>
Available if .tag is shared_content_download. (sharing) Downloaded shared file/folder shared_content_relinquish_membershipTeamLogSharedContentRelinquishMembershipType <optional>
Available if .tag is shared_content_relinquish_membership. (sharing) Left shared file/folder shared_content_remove_inviteesTeamLogSharedContentRemoveInviteesType <optional>
Available if .tag is shared_content_remove_invitees. (sharing) Removed invitee from shared file/folder before invite was accepted shared_content_remove_link_expiryTeamLogSharedContentRemoveLinkExpiryType <optional>
Available if .tag is shared_content_remove_link_expiry. (sharing) Removed link expiration date of shared file/folder (deprecated, no longer logged) shared_content_remove_link_passwordTeamLogSharedContentRemoveLinkPasswordType <optional>
Available if .tag is shared_content_remove_link_password. (sharing) Removed link password of shared file/folder (deprecated, no longer logged) shared_content_remove_memberTeamLogSharedContentRemoveMemberType <optional>
Available if .tag is shared_content_remove_member. (sharing) Removed user/group from shared file/folder shared_content_request_accessTeamLogSharedContentRequestAccessType <optional>
Available if .tag is shared_content_request_access. (sharing) Requested access to shared file/folder shared_content_restore_inviteesTeamLogSharedContentRestoreInviteesType <optional>
Available if .tag is shared_content_restore_invitees. (sharing) Restored shared file/folder invitees shared_content_restore_memberTeamLogSharedContentRestoreMemberType <optional>
Available if .tag is shared_content_restore_member. (sharing) Restored users and/or groups to membership of shared file/folder shared_content_unshareTeamLogSharedContentUnshareType <optional>
Available if .tag is shared_content_unshare. (sharing) Unshared file/folder by clearing membership shared_content_viewTeamLogSharedContentViewType <optional>
Available if .tag is shared_content_view. (sharing) Previewed shared file/folder shared_folder_change_link_policyTeamLogSharedFolderChangeLinkPolicyType <optional>
Available if .tag is shared_folder_change_link_policy. (sharing) Changed who can access shared folder via link shared_folder_change_members_inheritance_policyTeamLogSharedFolderChangeMembersInheritancePolicyType <optional>
Available if .tag is shared_folder_change_members_inheritance_policy. (sharing) Changed whether shared folder inherits members from parent folder shared_folder_change_members_management_policyTeamLogSharedFolderChangeMembersManagementPolicyType <optional>
Available if .tag is shared_folder_change_members_management_policy. (sharing) Changed who can add/remove members of shared folder shared_folder_change_members_policyTeamLogSharedFolderChangeMembersPolicyType <optional>
Available if .tag is shared_folder_change_members_policy. (sharing) Changed who can become member of shared folder shared_folder_createTeamLogSharedFolderCreateType <optional>
Available if .tag is shared_folder_create. (sharing) Created shared folder shared_folder_decline_invitationTeamLogSharedFolderDeclineInvitationType <optional>
Available if .tag is shared_folder_decline_invitation. (sharing) Declined team member's invite to shared folder shared_folder_mountTeamLogSharedFolderMountType <optional>
Available if .tag is shared_folder_mount. (sharing) Added shared folder to own Dropbox shared_folder_nestTeamLogSharedFolderNestType <optional>
Available if .tag is shared_folder_nest. (sharing) Changed parent of shared folder shared_folder_transfer_ownershipTeamLogSharedFolderTransferOwnershipType <optional>
Available if .tag is shared_folder_transfer_ownership. (sharing) Transferred ownership of shared folder to another member shared_folder_unmountTeamLogSharedFolderUnmountType <optional>
Available if .tag is shared_folder_unmount. (sharing) Deleted shared folder from Dropbox shared_link_add_expiryTeamLogSharedLinkAddExpiryType <optional>
Available if .tag is shared_link_add_expiry. (sharing) Added shared link expiration date shared_link_change_expiryTeamLogSharedLinkChangeExpiryType <optional>
Available if .tag is shared_link_change_expiry. (sharing) Changed shared link expiration date shared_link_change_visibilityTeamLogSharedLinkChangeVisibilityType <optional>
Available if .tag is shared_link_change_visibility. (sharing) Changed visibility of shared link shared_link_copyTeamLogSharedLinkCopyType <optional>
Available if .tag is shared_link_copy. (sharing) Added file/folder to Dropbox from shared link shared_link_createTeamLogSharedLinkCreateType <optional>
Available if .tag is shared_link_create. (sharing) Created shared link shared_link_disableTeamLogSharedLinkDisableType <optional>
Available if .tag is shared_link_disable. (sharing) Removed shared link shared_link_downloadTeamLogSharedLinkDownloadType <optional>
Available if .tag is shared_link_download. (sharing) Downloaded file/folder from shared link shared_link_remove_expiryTeamLogSharedLinkRemoveExpiryType <optional>
Available if .tag is shared_link_remove_expiry. (sharing) Removed shared link expiration date shared_link_settings_add_expirationTeamLogSharedLinkSettingsAddExpirationType <optional>
Available if .tag is shared_link_settings_add_expiration. (sharing) Added an expiration date to the shared link shared_link_settings_add_passwordTeamLogSharedLinkSettingsAddPasswordType <optional>
Available if .tag is shared_link_settings_add_password. (sharing) Added a password to the shared link shared_link_settings_allow_download_disabledTeamLogSharedLinkSettingsAllowDownloadDisabledType <optional>
Available if .tag is shared_link_settings_allow_download_disabled. (sharing) Disabled downloads shared_link_settings_allow_download_enabledTeamLogSharedLinkSettingsAllowDownloadEnabledType <optional>
Available if .tag is shared_link_settings_allow_download_enabled. (sharing) Enabled downloads shared_link_settings_change_audienceTeamLogSharedLinkSettingsChangeAudienceType <optional>
Available if .tag is shared_link_settings_change_audience. (sharing) Changed the audience of the shared link shared_link_settings_change_expirationTeamLogSharedLinkSettingsChangeExpirationType <optional>
Available if .tag is shared_link_settings_change_expiration. (sharing) Changed the expiration date of the shared link shared_link_settings_change_passwordTeamLogSharedLinkSettingsChangePasswordType <optional>
Available if .tag is shared_link_settings_change_password. (sharing) Changed the password of the shared link shared_link_settings_remove_expirationTeamLogSharedLinkSettingsRemoveExpirationType <optional>
Available if .tag is shared_link_settings_remove_expiration. (sharing) Removed the expiration date from the shared link shared_link_settings_remove_passwordTeamLogSharedLinkSettingsRemovePasswordType <optional>
Available if .tag is shared_link_settings_remove_password. (sharing) Removed the password from the shared link shared_link_shareTeamLogSharedLinkShareType <optional>
Available if .tag is shared_link_share. (sharing) Added members as audience of shared link shared_link_viewTeamLogSharedLinkViewType <optional>
Available if .tag is shared_link_view. (sharing) Opened shared link shared_note_openedTeamLogSharedNoteOpenedType <optional>
Available if .tag is shared_note_opened. (sharing) Opened shared Paper doc (deprecated, no longer logged) shmodel_disable_downloadsTeamLogShmodelDisableDownloadsType <optional>
Available if .tag is shmodel_disable_downloads. (sharing) Disabled downloads for link (deprecated, no longer logged) shmodel_enable_downloadsTeamLogShmodelEnableDownloadsType <optional>
Available if .tag is shmodel_enable_downloads. (sharing) Enabled downloads for link (deprecated, no longer logged) shmodel_group_shareTeamLogShmodelGroupShareType <optional>
Available if .tag is shmodel_group_share. (sharing) Shared link with group (deprecated, no longer logged) showcase_access_grantedTeamLogShowcaseAccessGrantedType <optional>
Available if .tag is showcase_access_granted. (showcase) Granted access to showcase showcase_add_memberTeamLogShowcaseAddMemberType <optional>
Available if .tag is showcase_add_member. (showcase) Added member to showcase showcase_archivedTeamLogShowcaseArchivedType <optional>
Available if .tag is showcase_archived. (showcase) Archived showcase showcase_createdTeamLogShowcaseCreatedType <optional>
Available if .tag is showcase_created. (showcase) Created showcase showcase_delete_commentTeamLogShowcaseDeleteCommentType <optional>
Available if .tag is showcase_delete_comment. (showcase) Deleted showcase comment showcase_editedTeamLogShowcaseEditedType <optional>
Available if .tag is showcase_edited. (showcase) Edited showcase showcase_edit_commentTeamLogShowcaseEditCommentType <optional>
Available if .tag is showcase_edit_comment. (showcase) Edited showcase comment showcase_file_addedTeamLogShowcaseFileAddedType <optional>
Available if .tag is showcase_file_added. (showcase) Added file to showcase showcase_file_downloadTeamLogShowcaseFileDownloadType <optional>
Available if .tag is showcase_file_download. (showcase) Downloaded file from showcase showcase_file_removedTeamLogShowcaseFileRemovedType <optional>
Available if .tag is showcase_file_removed. (showcase) Removed file from showcase showcase_file_viewTeamLogShowcaseFileViewType <optional>
Available if .tag is showcase_file_view. (showcase) Viewed file in showcase showcase_permanently_deletedTeamLogShowcasePermanentlyDeletedType <optional>
Available if .tag is showcase_permanently_deleted. (showcase) Permanently deleted showcase showcase_post_commentTeamLogShowcasePostCommentType <optional>
Available if .tag is showcase_post_comment. (showcase) Added showcase comment showcase_remove_memberTeamLogShowcaseRemoveMemberType <optional>
Available if .tag is showcase_remove_member. (showcase) Removed member from showcase showcase_renamedTeamLogShowcaseRenamedType <optional>
Available if .tag is showcase_renamed. (showcase) Renamed showcase showcase_request_accessTeamLogShowcaseRequestAccessType <optional>
Available if .tag is showcase_request_access. (showcase) Requested access to showcase showcase_resolve_commentTeamLogShowcaseResolveCommentType <optional>
Available if .tag is showcase_resolve_comment. (showcase) Resolved showcase comment showcase_restoredTeamLogShowcaseRestoredType <optional>
Available if .tag is showcase_restored. (showcase) Unarchived showcase showcase_trashedTeamLogShowcaseTrashedType <optional>
Available if .tag is showcase_trashed. (showcase) Deleted showcase showcase_trashed_deprecatedTeamLogShowcaseTrashedDeprecatedType <optional>
Available if .tag is showcase_trashed_deprecated. (showcase) Deleted showcase (old version) (deprecated, replaced by 'Deleted showcase') showcase_unresolve_commentTeamLogShowcaseUnresolveCommentType <optional>
- Available if .tag is showcase_unresolve_comment. (showcase) Unresolved showcase comment showcase_untrashedTeamLogShowcaseUntrashedType <optional>
Available if .tag is showcase_untrashed. (showcase) Restored showcase showcase_untrashed_deprecatedTeamLogShowcaseUntrashedDeprecatedType <optional>
Available if .tag is showcase_untrashed_deprecated. (showcase) Restored showcase (old version) (deprecated, replaced by 'Restored showcase') showcase_viewTeamLogShowcaseViewType <optional>
Available if .tag is showcase_view. (showcase) Viewed showcase sso_add_certTeamLogSsoAddCertType <optional>
Available if .tag is sso_add_cert. (sso) Added X.509 certificate for SSO sso_add_login_urlTeamLogSsoAddLoginUrlType <optional>
Available if .tag is sso_add_login_url. (sso) Added sign-in URL for SSO sso_add_logout_urlTeamLogSsoAddLogoutUrlType <optional>
Available if .tag is sso_add_logout_url. (sso) Added sign-out URL for SSO sso_change_certTeamLogSsoChangeCertType <optional>
Available if .tag is sso_change_cert. (sso) Changed X.509 certificate for SSO sso_change_login_urlTeamLogSsoChangeLoginUrlType <optional>
Available if .tag is sso_change_login_url. (sso) Changed sign-in URL for SSO sso_change_logout_urlTeamLogSsoChangeLogoutUrlType <optional>
Available if .tag is sso_change_logout_url. (sso) Changed sign-out URL for SSO sso_change_saml_identity_modeTeamLogSsoChangeSamlIdentityModeType <optional>
Available if .tag is sso_change_saml_identity_mode. (sso) Changed SAML identity mode for SSO sso_remove_certTeamLogSsoRemoveCertType <optional>
Available if .tag is sso_remove_cert. (sso) Removed X.509 certificate for SSO sso_remove_login_urlTeamLogSsoRemoveLoginUrlType <optional>
Available if .tag is sso_remove_login_url. (sso) Removed sign-in URL for SSO sso_remove_logout_urlTeamLogSsoRemoveLogoutUrlType <optional>
Available if .tag is sso_remove_logout_url. (sso) Removed sign-out URL for SSO team_folder_change_statusTeamLogTeamFolderChangeStatusType <optional>
Available if .tag is team_folder_change_status. (team_folders) Changed archival status of team folder team_folder_createTeamLogTeamFolderCreateType <optional>
Available if .tag is team_folder_create. (team_folders) Created team folder in active status team_folder_downgradeTeamLogTeamFolderDowngradeType <optional>
Available if .tag is team_folder_downgrade. (team_folders) Downgraded team folder to regular shared folder team_folder_permanently_deleteTeamLogTeamFolderPermanentlyDeleteType <optional>
Available if .tag is team_folder_permanently_delete. (team_folders) Permanently deleted archived team folder team_folder_renameTeamLogTeamFolderRenameType <optional>
Available if .tag is team_folder_rename. (team_folders) Renamed active/archived team folder team_selective_sync_settings_changedTeamLogTeamSelectiveSyncSettingsChangedType <optional>
Available if .tag is team_selective_sync_settings_changed. (team_folders) Changed sync default account_capture_change_policyTeamLogAccountCaptureChangePolicyType <optional>
Available if .tag is account_capture_change_policy. (team_policies) Changed account capture setting on team domain admin_email_reminders_changedTeamLogAdminEmailRemindersChangedType <optional>
Available if .tag is admin_email_reminders_changed. (team_policies) Changed admin reminder settings for requests to join the team allow_download_disabledTeamLogAllowDownloadDisabledType <optional>
Available if .tag is allow_download_disabled. (team_policies) Disabled downloads (deprecated, no longer logged) allow_download_enabledTeamLogAllowDownloadEnabledType <optional>
Available if .tag is allow_download_enabled. (team_policies) Enabled downloads (deprecated, no longer logged) app_permissions_changedTeamLogAppPermissionsChangedType <optional>
Available if .tag is app_permissions_changed. (team_policies) Changed app permissions camera_uploads_policy_changedTeamLogCameraUploadsPolicyChangedType <optional>
Available if .tag is camera_uploads_policy_changed. (team_policies) Changed camera uploads setting for team capture_transcript_policy_changedTeamLogCaptureTranscriptPolicyChangedType <optional>
Available if .tag is capture_transcript_policy_changed. (team_policies) Changed Capture transcription policy for team classification_change_policyTeamLogClassificationChangePolicyType <optional>
Available if .tag is classification_change_policy. (team_policies) Changed classification policy for team computer_backup_policy_changedTeamLogComputerBackupPolicyChangedType <optional>
Available if .tag is computer_backup_policy_changed. (team_policies) Changed computer backup policy for team content_administration_policy_changedTeamLogContentAdministrationPolicyChangedType <optional>
Available if .tag is content_administration_policy_changed. (team_policies) Changed content management setting data_placement_restriction_change_policyTeamLogDataPlacementRestrictionChangePolicyType <optional>
Available if .tag is data_placement_restriction_change_policy. (team_policies) Set restrictions on data center locations where team data resides data_placement_restriction_satisfy_policyTeamLogDataPlacementRestrictionSatisfyPolicyType <optional>
Available if .tag is data_placement_restriction_satisfy_policy. (team_policies) Completed restrictions on data center locations where team data resides device_approvals_add_exceptionTeamLogDeviceApprovalsAddExceptionType <optional>
Available if .tag is device_approvals_add_exception. (team_policies) Added members to device approvals exception list device_approvals_change_desktop_policyTeamLogDeviceApprovalsChangeDesktopPolicyType <optional>
Available if .tag is device_approvals_change_desktop_policy. (team_policies) Set/removed limit on number of computers member can link to team Dropbox account device_approvals_change_mobile_policyTeamLogDeviceApprovalsChangeMobilePolicyType <optional>
Available if .tag is device_approvals_change_mobile_policy. (team_policies) Set/removed limit on number of mobile devices member can link to team Dropbox account device_approvals_change_overage_actionTeamLogDeviceApprovalsChangeOverageActionType <optional>
Available if .tag is device_approvals_change_overage_action. (team_policies) Changed device approvals setting when member is over limit device_approvals_change_unlink_actionTeamLogDeviceApprovalsChangeUnlinkActionType <optional>
Available if .tag is device_approvals_change_unlink_action. (team_policies) Changed device approvals setting when member unlinks approved device device_approvals_remove_exceptionTeamLogDeviceApprovalsRemoveExceptionType <optional>
Available if .tag is device_approvals_remove_exception. (team_policies) Removed members from device approvals exception list directory_restrictions_add_membersTeamLogDirectoryRestrictionsAddMembersType <optional>
Available if .tag is directory_restrictions_add_members. (team_policies) Added members to directory restrictions list directory_restrictions_remove_membersTeamLogDirectoryRestrictionsRemoveMembersType <optional>
Available if .tag is directory_restrictions_remove_members. (team_policies) Removed members from directory restrictions list dropbox_passwords_policy_changedTeamLogDropboxPasswordsPolicyChangedType <optional>
Available if .tag is dropbox_passwords_policy_changed. (team_policies) Changed Dropbox Passwords policy for team email_ingest_policy_changedTeamLogEmailIngestPolicyChangedType <optional>
- Available if .tag is email_ingest_policy_changed. (team_policies) Changed email to Dropbox policy for team emm_add_exceptionTeamLogEmmAddExceptionType <optional>
Available if .tag is emm_add_exception. (team_policies) Added members to EMM exception list emm_change_policyTeamLogEmmChangePolicyType <optional>
Available if .tag is emm_change_policy. (team_policies) Enabled/disabled enterprise mobility management for members emm_remove_exceptionTeamLogEmmRemoveExceptionType <optional>
Available if .tag is emm_remove_exception. (team_policies) Removed members from EMM exception list extended_version_history_change_policyTeamLogExtendedVersionHistoryChangePolicyType <optional>
Available if .tag is extended_version_history_change_policy. (team_policies) Accepted/opted out of extended version history external_drive_backup_policy_changedTeamLogExternalDriveBackupPolicyChangedType <optional>
Available if .tag is external_drive_backup_policy_changed. (team_policies) Changed external drive backup policy for team file_comments_change_policyTeamLogFileCommentsChangePolicyType <optional>
- Available if .tag is file_comments_change_policy. (team_policies) Enabled/disabled commenting on team files file_locking_policy_changedTeamLogFileLockingPolicyChangedType <optional>
- Available if .tag is file_locking_policy_changed. (team_policies) Changed file locking policy for team file_provider_migration_policy_changedTeamLogFileProviderMigrationPolicyChangedType <optional>
Available if .tag is file_provider_migration_policy_changed. (team_policies) Changed File Provider Migration policy for team file_requests_change_policyTeamLogFileRequestsChangePolicyType <optional>
- Available if .tag is file_requests_change_policy. (team_policies) Enabled/disabled file requests file_requests_emails_enabledTeamLogFileRequestsEmailsEnabledType <optional>
Available if .tag is file_requests_emails_enabled. (team_policies) Enabled file request emails for everyone (deprecated, no longer logged) file_requests_emails_restricted_to_team_onlyTeamLogFileRequestsEmailsRestrictedToTeamOnlyType <optional>
Available if .tag is file_requests_emails_restricted_to_team_only. (team_policies) Enabled file request emails for team (deprecated, no longer logged) file_transfers_policy_changedTeamLogFileTransfersPolicyChangedType <optional>
Available if .tag is file_transfers_policy_changed. (team_policies) Changed file transfers policy for team folder_link_restriction_policy_changedTeamLogFolderLinkRestrictionPolicyChangedType <optional>
Available if .tag is folder_link_restriction_policy_changed. (team_policies) Changed folder link restrictions policy for team google_sso_change_policyTeamLogGoogleSsoChangePolicyType <optional>
Available if .tag is google_sso_change_policy. (team_policies) Enabled/disabled Google single sign-on for team group_user_management_change_policyTeamLogGroupUserManagementChangePolicyType <optional>
Available if .tag is group_user_management_change_policy. (team_policies) Changed who can create groups integration_policy_changedTeamLogIntegrationPolicyChangedType <optional>
- Available if .tag is integration_policy_changed. (team_policies) Changed integration policy for team invite_acceptance_email_policy_changedTeamLogInviteAcceptanceEmailPolicyChangedType <optional>
Available if .tag is invite_acceptance_email_policy_changed. (team_policies) Changed invite accept email policy for team member_requests_change_policyTeamLogMemberRequestsChangePolicyType <optional>
Available if .tag is member_requests_change_policy. (team_policies) Changed whether users can find team when not invited member_send_invite_policy_changedTeamLogMemberSendInvitePolicyChangedType <optional>
Available if .tag is member_send_invite_policy_changed. (team_policies) Changed member send invite policy for team member_space_limits_add_exceptionTeamLogMemberSpaceLimitsAddExceptionType <optional>
Available if .tag is member_space_limits_add_exception. (team_policies) Added members to member space limit exception list member_space_limits_change_caps_type_policyTeamLogMemberSpaceLimitsChangeCapsTypePolicyType <optional>
Available if .tag is member_space_limits_change_caps_type_policy. (team_policies) Changed member space limit type for team member_space_limits_change_policyTeamLogMemberSpaceLimitsChangePolicyType <optional>
Available if .tag is member_space_limits_change_policy. (team_policies) Changed team default member space limit member_space_limits_remove_exceptionTeamLogMemberSpaceLimitsRemoveExceptionType <optional>
Available if .tag is member_space_limits_remove_exception. (team_policies) Removed members from member space limit exception list member_suggestions_change_policyTeamLogMemberSuggestionsChangePolicyType <optional>
Available if .tag is member_suggestions_change_policy. (team_policies) Enabled/disabled option for team members to suggest people to add to team microsoft_office_addin_change_policyTeamLogMicrosoftOfficeAddinChangePolicyType <optional>
Available if .tag is microsoft_office_addin_change_policy. (team_policies) Enabled/disabled Microsoft Office add-in network_control_change_policyTeamLogNetworkControlChangePolicyType <optional>
Available if .tag is network_control_change_policy. (team_policies) Enabled/disabled network control paper_change_deployment_policyTeamLogPaperChangeDeploymentPolicyType <optional>
Available if .tag is paper_change_deployment_policy. (team_policies) Changed whether Dropbox Paper, when enabled, is deployed to all members or to specific members paper_change_member_link_policyTeamLogPaperChangeMemberLinkPolicyType <optional>
Available if .tag is paper_change_member_link_policy. (team_policies) Changed whether non-members can view Paper docs with link (deprecated, no longer logged) paper_change_member_policyTeamLogPaperChangeMemberPolicyType <optional>
Available if .tag is paper_change_member_policy. (team_policies) Changed whether members can share Paper docs outside team, and if docs are accessible only by team members or anyone by default paper_change_policyTeamLogPaperChangePolicyType <optional>
Available if .tag is paper_change_policy. (team_policies) Enabled/disabled Dropbox Paper for team paper_default_folder_policy_changedTeamLogPaperDefaultFolderPolicyChangedType <optional>
Available if .tag is paper_default_folder_policy_changed. (team_policies) Changed Paper Default Folder Policy setting for team paper_desktop_policy_changedTeamLogPaperDesktopPolicyChangedType <optional>
Available if .tag is paper_desktop_policy_changed. (team_policies) Enabled/disabled Paper Desktop for team paper_enabled_users_group_additionTeamLogPaperEnabledUsersGroupAdditionType <optional>
Available if .tag is paper_enabled_users_group_addition. (team_policies) Added users to Paper-enabled users list paper_enabled_users_group_removalTeamLogPaperEnabledUsersGroupRemovalType <optional>
Available if .tag is paper_enabled_users_group_removal. (team_policies) Removed users from Paper-enabled users list password_strength_requirements_change_policyTeamLogPasswordStrengthRequirementsChangePolicyType <optional>
Available if .tag is password_strength_requirements_change_policy. (team_policies) Changed team password strength requirements permanent_delete_change_policyTeamLogPermanentDeleteChangePolicyType <optional>
Available if .tag is permanent_delete_change_policy. (team_policies) Enabled/disabled ability of team members to permanently delete content reseller_support_change_policyTeamLogResellerSupportChangePolicyType <optional>
Available if .tag is reseller_support_change_policy. (team_policies) Enabled/disabled reseller support rewind_policy_changedTeamLogRewindPolicyChangedType <optional>
Available if .tag is rewind_policy_changed. (team_policies) Changed Rewind policy for team send_for_signature_policy_changedTeamLogSendForSignaturePolicyChangedType <optional>
Available if .tag is send_for_signature_policy_changed. (team_policies) Changed send for signature policy for team sharing_change_folder_join_policyTeamLogSharingChangeFolderJoinPolicyType <optional>
Available if .tag is sharing_change_folder_join_policy. (team_policies) Changed whether team members can join shared folders owned outside team sharing_change_link_allow_change_expiration_policyTeamLogSharingChangeLinkAllowChangeExpirationPolicyType <optional>
Available if .tag is sharing_change_link_allow_change_expiration_policy. (team_policies) Changed the allow remove or change expiration policy for the links shared outside of the team sharing_change_link_default_expiration_policyTeamLogSharingChangeLinkDefaultExpirationPolicyType <optional>
Available if .tag is sharing_change_link_default_expiration_policy. (team_policies) Changed the default expiration for the links shared outside of the team sharing_change_link_enforce_password_policyTeamLogSharingChangeLinkEnforcePasswordPolicyType <optional>
Available if .tag is sharing_change_link_enforce_password_policy. (team_policies) Changed the password requirement for the links shared outside of the team sharing_change_link_policyTeamLogSharingChangeLinkPolicyType <optional>
Available if .tag is sharing_change_link_policy. (team_policies) Changed whether members can share links outside team, and if links are accessible only by team members or anyone by default sharing_change_member_policyTeamLogSharingChangeMemberPolicyType <optional>
Available if .tag is sharing_change_member_policy. (team_policies) Changed whether members can share files/folders outside team showcase_change_download_policyTeamLogShowcaseChangeDownloadPolicyType <optional>
Available if .tag is showcase_change_download_policy. (team_policies) Enabled/disabled downloading files from Dropbox Showcase for team showcase_change_enabled_policyTeamLogShowcaseChangeEnabledPolicyType <optional>
Available if .tag is showcase_change_enabled_policy. (team_policies) Enabled/disabled Dropbox Showcase for team showcase_change_external_sharing_policyTeamLogShowcaseChangeExternalSharingPolicyType <optional>
Available if .tag is showcase_change_external_sharing_policy. (team_policies) Enabled/disabled sharing Dropbox Showcase externally for team smarter_smart_sync_policy_changedTeamLogSmarterSmartSyncPolicyChangedType <optional>
Available if .tag is smarter_smart_sync_policy_changed. (team_policies) Changed automatic Smart Sync setting for team smart_sync_change_policyTeamLogSmartSyncChangePolicyType <optional>
Available if .tag is smart_sync_change_policy. (team_policies) Changed default Smart Sync setting for team members smart_sync_not_opt_outTeamLogSmartSyncNotOptOutType <optional>
Available if .tag is smart_sync_not_opt_out. (team_policies) Opted team into Smart Sync smart_sync_opt_outTeamLogSmartSyncOptOutType <optional>
Available if .tag is smart_sync_opt_out. (team_policies) Opted team out of Smart Sync sso_change_policyTeamLogSsoChangePolicyType <optional>
Available if .tag is sso_change_policy. (team_policies) Changed single sign-on setting for team team_branding_policy_changedTeamLogTeamBrandingPolicyChangedType <optional>
Available if .tag is team_branding_policy_changed. (team_policies) Changed team branding policy for team team_extensions_policy_changedTeamLogTeamExtensionsPolicyChangedType <optional>
Available if .tag is team_extensions_policy_changed. (team_policies) Changed App Integrations setting for team team_selective_sync_policy_changedTeamLogTeamSelectiveSyncPolicyChangedType <optional>
Available if .tag is team_selective_sync_policy_changed. (team_policies) Enabled/disabled Team Selective Sync for team team_sharing_whitelist_subjects_changedTeamLogTeamSharingWhitelistSubjectsChangedType <optional>
Available if .tag is team_sharing_whitelist_subjects_changed. (team_policies) Edited the approved list for sharing externally tfa_add_exceptionTeamLogTfaAddExceptionType <optional>
Available if .tag is tfa_add_exception. (team_policies) Added members to two factor authentication exception list tfa_change_policyTeamLogTfaChangePolicyType <optional>
Available if .tag is tfa_change_policy. (team_policies) Changed two-step verification setting for team tfa_remove_exceptionTeamLogTfaRemoveExceptionType <optional>
Available if .tag is tfa_remove_exception. (team_policies) Removed members from two factor authentication exception list two_account_change_policyTeamLogTwoAccountChangePolicyType <optional>
Available if .tag is two_account_change_policy. (team_policies) Enabled/disabled option for members to link personal Dropbox account and team account to same computer viewer_info_policy_changedTeamLogViewerInfoPolicyChangedType <optional>
Available if .tag is viewer_info_policy_changed. (team_policies) Changed team policy for viewer info watermarking_policy_changedTeamLogWatermarkingPolicyChangedType <optional>
Available if .tag is watermarking_policy_changed. (team_policies) Changed watermarking policy for team web_sessions_change_active_session_limitTeamLogWebSessionsChangeActiveSessionLimitType <optional>
Available if .tag is web_sessions_change_active_session_limit. (team_policies) Changed limit on active sessions per member web_sessions_change_fixed_length_policyTeamLogWebSessionsChangeFixedLengthPolicyType <optional>
Available if .tag is web_sessions_change_fixed_length_policy. (team_policies) Changed how long members can stay signed in to Dropbox.com web_sessions_change_idle_length_policyTeamLogWebSessionsChangeIdleLengthPolicyType <optional>
Available if .tag is web_sessions_change_idle_length_policy. (team_policies) Changed how long team members can be idle while signed in to Dropbox.com data_residency_migration_request_successfulTeamLogDataResidencyMigrationRequestSuccessfulType <optional>
Available if .tag is data_residency_migration_request_successful. (team_profile) Requested data residency migration for team data data_residency_migration_request_unsuccessfulTeamLogDataResidencyMigrationRequestUnsuccessfulType <optional>
Available if .tag is data_residency_migration_request_unsuccessful. (team_profile) Request for data residency migration for team data has failed team_merge_fromTeamLogTeamMergeFromType <optional>
Available if .tag is team_merge_from. (team_profile) Merged another team into this team team_merge_toTeamLogTeamMergeToType <optional>
Available if .tag is team_merge_to. (team_profile) Merged this team into another team team_profile_add_backgroundTeamLogTeamProfileAddBackgroundType <optional>
- Available if .tag is team_profile_add_background. (team_profile) Added team background to display on shared link headers team_profile_add_logoTeamLogTeamProfileAddLogoType <optional>
Available if .tag is team_profile_add_logo. (team_profile) Added team logo to display on shared link headers team_profile_change_backgroundTeamLogTeamProfileChangeBackgroundType <optional>
Available if .tag is team_profile_change_background. (team_profile) Changed team background displayed on shared link headers team_profile_change_default_languageTeamLogTeamProfileChangeDefaultLanguageType <optional>
Available if .tag is team_profile_change_default_language. (team_profile) Changed default language for team team_profile_change_logoTeamLogTeamProfileChangeLogoType <optional>
Available if .tag is team_profile_change_logo. (team_profile) Changed team logo displayed on shared link headers team_profile_change_nameTeamLogTeamProfileChangeNameType <optional>
Available if .tag is team_profile_change_name. (team_profile) Changed team name team_profile_remove_backgroundTeamLogTeamProfileRemoveBackgroundType <optional>
Available if .tag is team_profile_remove_background. (team_profile) Removed team background displayed on shared link headers team_profile_remove_logoTeamLogTeamProfileRemoveLogoType <optional>
Available if .tag is team_profile_remove_logo. (team_profile) Removed team logo displayed on shared link headers tfa_add_backup_phoneTeamLogTfaAddBackupPhoneType <optional>
Available if .tag is tfa_add_backup_phone. (tfa) Added backup phone for two-step verification tfa_add_security_keyTeamLogTfaAddSecurityKeyType <optional>
Available if .tag is tfa_add_security_key. (tfa) Added security key for two-step verification tfa_change_backup_phoneTeamLogTfaChangeBackupPhoneType <optional>
Available if .tag is tfa_change_backup_phone. (tfa) Changed backup phone for two-step verification tfa_change_statusTeamLogTfaChangeStatusType <optional>
Available if .tag is tfa_change_status. (tfa) Enabled/disabled/changed two-step verification setting tfa_remove_backup_phoneTeamLogTfaRemoveBackupPhoneType <optional>
Available if .tag is tfa_remove_backup_phone. (tfa) Removed backup phone for two-step verification tfa_remove_security_keyTeamLogTfaRemoveSecurityKeyType <optional>
Available if .tag is tfa_remove_security_key. (tfa) Removed security key for two-step verification tfa_resetTeamLogTfaResetType <optional>
Available if .tag is tfa_reset. (tfa) Reset two-step verification for team member changed_enterprise_admin_roleTeamLogChangedEnterpriseAdminRoleType <optional>
Available if .tag is changed_enterprise_admin_role. (trusted_teams) Changed enterprise admin role changed_enterprise_connected_team_statusTeamLogChangedEnterpriseConnectedTeamStatusType <optional>
Available if .tag is changed_enterprise_connected_team_status. (trusted_teams) Changed enterprise-connected team status ended_enterprise_admin_sessionTeamLogEndedEnterpriseAdminSessionType <optional>
Available if .tag is ended_enterprise_admin_session. (trusted_teams) Ended enterprise admin session ended_enterprise_admin_session_deprecatedTeamLogEndedEnterpriseAdminSessionDeprecatedType <optional>
Available if .tag is ended_enterprise_admin_session_deprecated. (trusted_teams) Ended enterprise admin session (deprecated, replaced by 'Ended enterprise admin session') enterprise_settings_lockingTeamLogEnterpriseSettingsLockingType <optional>
Available if .tag is enterprise_settings_locking. (trusted_teams) Changed who can update a setting guest_admin_change_statusTeamLogGuestAdminChangeStatusType <optional>
Available if .tag is guest_admin_change_status. (trusted_teams) Changed guest team admin status started_enterprise_admin_sessionTeamLogStartedEnterpriseAdminSessionType <optional>
Available if .tag is started_enterprise_admin_session. (trusted_teams) Started enterprise admin session team_merge_request_acceptedTeamLogTeamMergeRequestAcceptedType <optional>
- Available if .tag is team_merge_request_accepted. (trusted_teams) Accepted a team merge request team_merge_request_accepted_shown_to_primary_teamTeamLogTeamMergeRequestAcceptedShownToPrimaryTeamType <optional>
Available if .tag is team_merge_request_accepted_shown_to_primary_team. (trusted_teams) Accepted a team merge request (deprecated, replaced by 'Accepted a team merge request') team_merge_request_accepted_shown_to_secondary_teamTeamLogTeamMergeRequestAcceptedShownToSecondaryTeamType <optional>
Available if .tag is team_merge_request_accepted_shown_to_secondary_team. (trusted_teams) Accepted a team merge request (deprecated, replaced by 'Accepted a team merge request') team_merge_request_auto_canceledTeamLogTeamMergeRequestAutoCanceledType <optional>
Available if .tag is team_merge_request_auto_canceled. (trusted_teams) Automatically canceled team merge request team_merge_request_canceledTeamLogTeamMergeRequestCanceledType <optional>
- Available if .tag is team_merge_request_canceled. (trusted_teams) Canceled a team merge request team_merge_request_canceled_shown_to_primary_teamTeamLogTeamMergeRequestCanceledShownToPrimaryTeamType <optional>
Available if .tag is team_merge_request_canceled_shown_to_primary_team. (trusted_teams) Canceled a team merge request (deprecated, replaced by 'Canceled a team merge request') team_merge_request_canceled_shown_to_secondary_teamTeamLogTeamMergeRequestCanceledShownToSecondaryTeamType <optional>
Available if .tag is team_merge_request_canceled_shown_to_secondary_team. (trusted_teams) Canceled a team merge request (deprecated, replaced by 'Canceled a team merge request') team_merge_request_expiredTeamLogTeamMergeRequestExpiredType <optional>
Available if .tag is team_merge_request_expired. (trusted_teams) Team merge request expired team_merge_request_expired_shown_to_primary_teamTeamLogTeamMergeRequestExpiredShownToPrimaryTeamType <optional>
Available if .tag is team_merge_request_expired_shown_to_primary_team. (trusted_teams) Team merge request expired (deprecated, replaced by 'Team merge request expired') team_merge_request_expired_shown_to_secondary_teamTeamLogTeamMergeRequestExpiredShownToSecondaryTeamType <optional>
Available if .tag is team_merge_request_expired_shown_to_secondary_team. (trusted_teams) Team merge request expired (deprecated, replaced by 'Team merge request expired') team_merge_request_rejected_shown_to_primary_teamTeamLogTeamMergeRequestRejectedShownToPrimaryTeamType <optional>
Available if .tag is team_merge_request_rejected_shown_to_primary_team. (trusted_teams) Rejected a team merge request (deprecated, no longer logged) team_merge_request_rejected_shown_to_secondary_teamTeamLogTeamMergeRequestRejectedShownToSecondaryTeamType <optional>
Available if .tag is team_merge_request_rejected_shown_to_secondary_team. (trusted_teams) Rejected a team merge request (deprecated, no longer logged) team_merge_request_reminderTeamLogTeamMergeRequestReminderType <optional>
- Available if .tag is team_merge_request_reminder. (trusted_teams) Sent a team merge request reminder team_merge_request_reminder_shown_to_primary_teamTeamLogTeamMergeRequestReminderShownToPrimaryTeamType <optional>
Available if .tag is team_merge_request_reminder_shown_to_primary_team. (trusted_teams) Sent a team merge request reminder (deprecated, replaced by 'Sent a team merge request reminder') team_merge_request_reminder_shown_to_secondary_teamTeamLogTeamMergeRequestReminderShownToSecondaryTeamType <optional>
Available if .tag is team_merge_request_reminder_shown_to_secondary_team. (trusted_teams) Sent a team merge request reminder (deprecated, replaced by 'Sent a team merge request reminder') team_merge_request_revokedTeamLogTeamMergeRequestRevokedType <optional>
Available if .tag is team_merge_request_revoked. (trusted_teams) Canceled the team merge team_merge_request_sent_shown_to_primary_teamTeamLogTeamMergeRequestSentShownToPrimaryTeamType <optional>
Available if .tag is team_merge_request_sent_shown_to_primary_team. (trusted_teams) Requested to merge their Dropbox team into yours team_merge_request_sent_shown_to_secondary_teamTeamLogTeamMergeRequestSentShownToSecondaryTeamType <optional>
Available if .tag is team_merge_request_sent_shown_to_secondary_team. (trusted_teams) Requested to merge your team into another Dropbox team .tag'admin_alerting_alert_state_changed' | 'admin_alerting_changed_alert_config' | 'admin_alerting_triggered_alert' | 'app_blocked_by_permissions' | 'app_link_team' | 'app_link_user' | 'app_unlink_team' | 'app_unlink_user' | 'integration_connected' | 'integration_disconnected' | 'file_add_comment' | 'file_change_comment_subscription' | 'file_delete_comment' | 'file_edit_comment' | 'file_like_comment' | 'file_resolve_comment' | 'file_unlike_comment' | 'file_unresolve_comment' | 'governance_policy_add_folders' | 'governance_policy_add_folder_failed' | 'governance_policy_content_disposed' | 'governance_policy_create' | 'governance_policy_delete' | 'governance_policy_edit_details' | 'governance_policy_edit_duration' | 'governance_policy_export_created' | 'governance_policy_export_removed' | 'governance_policy_remove_folders' | 'governance_policy_report_created' | 'governance_policy_zip_part_downloaded' | 'legal_holds_activate_a_hold' | 'legal_holds_add_members' | 'legal_holds_change_hold_details' | 'legal_holds_change_hold_name' | 'legal_holds_export_a_hold' | 'legal_holds_export_cancelled' | 'legal_holds_export_downloaded' | 'legal_holds_export_removed' | 'legal_holds_release_a_hold' | 'legal_holds_remove_members' | 'legal_holds_report_a_hold' | 'device_change_ip_desktop' | 'device_change_ip_mobile' | 'device_change_ip_web' | 'device_delete_on_unlink_fail' | 'device_delete_on_unlink_success' | 'device_link_fail' | 'device_link_success' | 'device_management_disabled' | 'device_management_enabled' | 'device_sync_backup_status_changed' | 'device_unlink' | 'dropbox_passwords_exported' | 'dropbox_passwords_new_device_enrolled' | 'emm_refresh_auth_token' | 'external_drive_backup_eligibility_status_checked' | 'external_drive_backup_status_changed' | 'account_capture_change_availability' | 'account_capture_migrate_account' | 'account_capture_notification_emails_sent' | 'account_capture_relinquish_account' | 'disabled_domain_invites' | 'domain_invites_approve_request_to_join_team' | 'domain_invites_decline_request_to_join_team' | 'domain_invites_email_existing_users' | 'domain_invites_request_to_join_team' | 'domain_invites_set_invite_new_user_pref_to_no' | 'domain_invites_set_invite_new_user_pref_to_yes' | 'domain_verification_add_domain_fail' | 'domain_verification_add_domain_success' | 'domain_verification_remove_domain' | 'enabled_domain_invites' | 'apply_naming_convention' | 'create_folder' | 'file_add' | 'file_copy' | 'file_delete' | 'file_download' | 'file_edit' | 'file_get_copy_reference' | 'file_locking_lock_status_changed' | 'file_move' | 'file_permanently_delete' | 'file_preview' | 'file_rename' | 'file_restore' | 'file_revert' | 'file_rollback_changes' | 'file_save_copy_reference' | 'folder_overview_description_changed' | 'folder_overview_item_pinned' | 'folder_overview_item_unpinned' | 'object_label_added' | 'object_label_removed' | 'object_label_updated_value' | 'organize_folder_with_tidy' | 'rewind_folder' | 'undo_naming_convention' | 'undo_organize_folder_with_tidy' | 'user_tags_added' | 'user_tags_removed' | 'email_ingest_receive_file' | 'file_request_change' | 'file_request_close' | 'file_request_create' | 'file_request_delete' | 'file_request_receive_file' | 'group_add_external_id' | 'group_add_member' | 'group_change_external_id' | 'group_change_management_type' | 'group_change_member_role' | 'group_create' | 'group_delete' | 'group_description_updated' | 'group_join_policy_updated' | 'group_moved' | 'group_remove_external_id' | 'group_remove_member' | 'group_rename' | 'account_lock_or_unlocked' | 'emm_error' | 'guest_admin_signed_in_via_trusted_teams' | 'guest_admin_signed_out_via_trusted_teams' | 'login_fail' | 'login_success' | 'logout' | 'reseller_support_session_end' | 'reseller_support_session_start' | 'sign_in_as_session_end' | 'sign_in_as_session_start' | 'sso_error' | 'create_team_invite_link' | 'delete_team_invite_link' | 'member_add_external_id' | 'member_add_name' | 'member_change_admin_role' | 'member_change_email' | 'member_change_external_id' | 'member_change_membership_type' | 'member_change_name' | 'member_change_reseller_role' | 'member_change_status' | 'member_delete_manual_contacts' | 'member_delete_profile_photo' | 'member_permanently_delete_account_contents' | 'member_remove_external_id' | 'member_set_profile_photo' | 'member_space_limits_add_custom_quota' | 'member_space_limits_change_custom_quota' | 'member_space_limits_change_status' | 'member_space_limits_remove_custom_quota' | 'member_suggest' | 'member_transfer_account_contents' | 'pending_secondary_email_added' | 'secondary_email_deleted' | 'secondary_email_verified' | 'secondary_mails_policy_changed' | 'binder_add_page' | 'binder_add_section' | 'binder_remove_page' | 'binder_remove_section' | 'binder_rename_page' | 'binder_rename_section' | 'binder_reorder_page' | 'binder_reorder_section' | 'paper_content_add_member' | 'paper_content_add_to_folder' | 'paper_content_archive' | 'paper_content_create' | 'paper_content_permanently_delete' | 'paper_content_remove_from_folder' | 'paper_content_remove_member' | 'paper_content_rename' | 'paper_content_restore' | 'paper_doc_add_comment' | 'paper_doc_change_member_role' | 'paper_doc_change_sharing_policy' | 'paper_doc_change_subscription' | 'paper_doc_deleted' | 'paper_doc_delete_comment' | 'paper_doc_download' | 'paper_doc_edit' | 'paper_doc_edit_comment' | 'paper_doc_followed' | 'paper_doc_mention' | 'paper_doc_ownership_changed' | 'paper_doc_request_access' | 'paper_doc_resolve_comment' | 'paper_doc_revert' | 'paper_doc_slack_share' | 'paper_doc_team_invite' | 'paper_doc_trashed' | 'paper_doc_unresolve_comment' | 'paper_doc_untrashed' | 'paper_doc_view' | 'paper_external_view_allow' | 'paper_external_view_default_team' | 'paper_external_view_forbid' | 'paper_folder_change_subscription' | 'paper_folder_deleted' | 'paper_folder_followed' | 'paper_folder_team_invite' | 'paper_published_link_change_permission' | 'paper_published_link_create' | 'paper_published_link_disabled' | 'paper_published_link_view' | 'password_change' | 'password_reset' | 'password_reset_all' | 'classification_create_report' | 'classification_create_report_fail' | 'emm_create_exceptions_report' | 'emm_create_usage_report' | 'export_members_report' | 'export_members_report_fail' | 'external_sharing_create_report' | 'external_sharing_report_failed' | 'no_expiration_link_gen_create_report' | 'no_expiration_link_gen_report_failed' | 'no_password_link_gen_create_report' | 'no_password_link_gen_report_failed' | 'no_password_link_view_create_report' | 'no_password_link_view_report_failed' | 'outdated_link_view_create_report' | 'outdated_link_view_report_failed' | 'paper_admin_export_start' | 'smart_sync_create_admin_privilege_report' | 'team_activity_create_report' | 'team_activity_create_report_fail' | 'collection_share' | 'file_transfers_file_add' | 'file_transfers_transfer_delete' | 'file_transfers_transfer_download' | 'file_transfers_transfer_send' | 'file_transfers_transfer_view' | 'note_acl_invite_only' | 'note_acl_link' | 'note_acl_team_link' | 'note_shared' | 'note_share_receive' | 'open_note_shared' | 'sf_add_group' | 'sf_allow_non_members_to_view_shared_links' | 'sf_external_invite_warn' | 'sf_fb_invite' | 'sf_fb_invite_change_role' | 'sf_fb_uninvite' | 'sf_invite_group' | 'sf_team_grant_access' | 'sf_team_invite' | 'sf_team_invite_change_role' | 'sf_team_join' | 'sf_team_join_from_oob_link' | 'sf_team_uninvite' | 'shared_content_add_invitees' | 'shared_content_add_link_expiry' | 'shared_content_add_link_password' | 'shared_content_add_member' | 'shared_content_change_downloads_policy' | 'shared_content_change_invitee_role' | 'shared_content_change_link_audience' | 'shared_content_change_link_expiry' | 'shared_content_change_link_password' | 'shared_content_change_member_role' | 'shared_content_change_viewer_info_policy' | 'shared_content_claim_invitation' | 'shared_content_copy' | 'shared_content_download' | 'shared_content_relinquish_membership' | 'shared_content_remove_invitees' | 'shared_content_remove_link_expiry' | 'shared_content_remove_link_password' | 'shared_content_remove_member' | 'shared_content_request_access' | 'shared_content_restore_invitees' | 'shared_content_restore_member' | 'shared_content_unshare' | 'shared_content_view' | 'shared_folder_change_link_policy' | 'shared_folder_change_members_inheritance_policy' | 'shared_folder_change_members_management_policy' | 'shared_folder_change_members_policy' | 'shared_folder_create' | 'shared_folder_decline_invitation' | 'shared_folder_mount' | 'shared_folder_nest' | 'shared_folder_transfer_ownership' | 'shared_folder_unmount' | 'shared_link_add_expiry' | 'shared_link_change_expiry' | 'shared_link_change_visibility' | 'shared_link_copy' | 'shared_link_create' | 'shared_link_disable' | 'shared_link_download' | 'shared_link_remove_expiry' | 'shared_link_settings_add_expiration' | 'shared_link_settings_add_password' | 'shared_link_settings_allow_download_disabled' | 'shared_link_settings_allow_download_enabled' | 'shared_link_settings_change_audience' | 'shared_link_settings_change_expiration' | 'shared_link_settings_change_password' | 'shared_link_settings_remove_expiration' | 'shared_link_settings_remove_password' | 'shared_link_share' | 'shared_link_view' | 'shared_note_opened' | 'shmodel_disable_downloads' | 'shmodel_enable_downloads' | 'shmodel_group_share' | 'showcase_access_granted' | 'showcase_add_member' | 'showcase_archived' | 'showcase_created' | 'showcase_delete_comment' | 'showcase_edited' | 'showcase_edit_comment' | 'showcase_file_added' | 'showcase_file_download' | 'showcase_file_removed' | 'showcase_file_view' | 'showcase_permanently_deleted' | 'showcase_post_comment' | 'showcase_remove_member' | 'showcase_renamed' | 'showcase_request_access' | 'showcase_resolve_comment' | 'showcase_restored' | 'showcase_trashed' | 'showcase_trashed_deprecated' | 'showcase_unresolve_comment' | 'showcase_untrashed' | 'showcase_untrashed_deprecated' | 'showcase_view' | 'sso_add_cert' | 'sso_add_login_url' | 'sso_add_logout_url' | 'sso_change_cert' | 'sso_change_login_url' | 'sso_change_logout_url' | 'sso_change_saml_identity_mode' | 'sso_remove_cert' | 'sso_remove_login_url' | 'sso_remove_logout_url' | 'team_folder_change_status' | 'team_folder_create' | 'team_folder_downgrade' | 'team_folder_permanently_delete' | 'team_folder_rename' | 'team_selective_sync_settings_changed' | 'account_capture_change_policy' | 'admin_email_reminders_changed' | 'allow_download_disabled' | 'allow_download_enabled' | 'app_permissions_changed' | 'camera_uploads_policy_changed' | 'capture_transcript_policy_changed' | 'classification_change_policy' | 'computer_backup_policy_changed' | 'content_administration_policy_changed' | 'data_placement_restriction_change_policy' | 'data_placement_restriction_satisfy_policy' | 'device_approvals_add_exception' | 'device_approvals_change_desktop_policy' | 'device_approvals_change_mobile_policy' | 'device_approvals_change_overage_action' | 'device_approvals_change_unlink_action' | 'device_approvals_remove_exception' | 'directory_restrictions_add_members' | 'directory_restrictions_remove_members' | 'dropbox_passwords_policy_changed' | 'email_ingest_policy_changed' | 'emm_add_exception' | 'emm_change_policy' | 'emm_remove_exception' | 'extended_version_history_change_policy' | 'external_drive_backup_policy_changed' | 'file_comments_change_policy' | 'file_locking_policy_changed' | 'file_provider_migration_policy_changed' | 'file_requests_change_policy' | 'file_requests_emails_enabled' | 'file_requests_emails_restricted_to_team_only' | 'file_transfers_policy_changed' | 'folder_link_restriction_policy_changed' | 'google_sso_change_policy' | 'group_user_management_change_policy' | 'integration_policy_changed' | 'invite_acceptance_email_policy_changed' | 'member_requests_change_policy' | 'member_send_invite_policy_changed' | 'member_space_limits_add_exception' | 'member_space_limits_change_caps_type_policy' | 'member_space_limits_change_policy' | 'member_space_limits_remove_exception' | 'member_suggestions_change_policy' | 'microsoft_office_addin_change_policy' | 'network_control_change_policy' | 'paper_change_deployment_policy' | 'paper_change_member_link_policy' | 'paper_change_member_policy' | 'paper_change_policy' | 'paper_default_folder_policy_changed' | 'paper_desktop_policy_changed' | 'paper_enabled_users_group_addition' | 'paper_enabled_users_group_removal' | 'password_strength_requirements_change_policy' | 'permanent_delete_change_policy' | 'reseller_support_change_policy' | 'rewind_policy_changed' | 'send_for_signature_policy_changed' | 'sharing_change_folder_join_policy' | 'sharing_change_link_allow_change_expiration_policy' | 'sharing_change_link_default_expiration_policy' | 'sharing_change_link_enforce_password_policy' | 'sharing_change_link_policy' | 'sharing_change_member_policy' | 'showcase_change_download_policy' | 'showcase_change_enabled_policy' | 'showcase_change_external_sharing_policy' | 'smarter_smart_sync_policy_changed' | 'smart_sync_change_policy' | 'smart_sync_not_opt_out' | 'smart_sync_opt_out' | 'sso_change_policy' | 'team_branding_policy_changed' | 'team_extensions_policy_changed' | 'team_selective_sync_policy_changed' | 'team_sharing_whitelist_subjects_changed' | 'tfa_add_exception' | 'tfa_change_policy' | 'tfa_remove_exception' | 'two_account_change_policy' | 'viewer_info_policy_changed' | 'watermarking_policy_changed' | 'web_sessions_change_active_session_limit' | 'web_sessions_change_fixed_length_policy' | 'web_sessions_change_idle_length_policy' | 'data_residency_migration_request_successful' | 'data_residency_migration_request_unsuccessful' | 'team_merge_from' | 'team_merge_to' | 'team_profile_add_background' | 'team_profile_add_logo' | 'team_profile_change_background' | 'team_profile_change_default_language' | 'team_profile_change_logo' | 'team_profile_change_name' | 'team_profile_remove_background' | 'team_profile_remove_logo' | 'tfa_add_backup_phone' | 'tfa_add_security_key' | 'tfa_change_backup_phone' | 'tfa_change_status' | 'tfa_remove_backup_phone' | 'tfa_remove_security_key' | 'tfa_reset' | 'changed_enterprise_admin_role' | 'changed_enterprise_connected_team_status' | 'ended_enterprise_admin_session' | 'ended_enterprise_admin_session_deprecated' | 'enterprise_settings_locking' | 'guest_admin_change_status' | 'started_enterprise_admin_session' | 'team_merge_request_accepted' | 'team_merge_request_accepted_shown_to_primary_team' | 'team_merge_request_accepted_shown_to_secondary_team' | 'team_merge_request_auto_canceled' | 'team_merge_request_canceled' | 'team_merge_request_canceled_shown_to_primary_team' | 'team_merge_request_canceled_shown_to_secondary_team' | 'team_merge_request_expired' | 'team_merge_request_expired_shown_to_primary_team' | 'team_merge_request_expired_shown_to_secondary_team' | 'team_merge_request_rejected_shown_to_primary_team' | 'team_merge_request_rejected_shown_to_secondary_team' | 'team_merge_request_reminder' | 'team_merge_request_reminder_shown_to_primary_team' | 'team_merge_request_reminder_shown_to_secondary_team' | 'team_merge_request_revoked' | 'team_merge_request_sent_shown_to_primary_team' | 'team_merge_request_sent_shown_to_secondary_team' | 'other' Tag identifying the union variant. -
TeamLogEventTypeArg
-
The type of the event.
Type:
- Object
Properties:
Name Type Description .tag'admin_alerting_alert_state_changed' | 'admin_alerting_changed_alert_config' | 'admin_alerting_triggered_alert' | 'app_blocked_by_permissions' | 'app_link_team' | 'app_link_user' | 'app_unlink_team' | 'app_unlink_user' | 'integration_connected' | 'integration_disconnected' | 'file_add_comment' | 'file_change_comment_subscription' | 'file_delete_comment' | 'file_edit_comment' | 'file_like_comment' | 'file_resolve_comment' | 'file_unlike_comment' | 'file_unresolve_comment' | 'governance_policy_add_folders' | 'governance_policy_add_folder_failed' | 'governance_policy_content_disposed' | 'governance_policy_create' | 'governance_policy_delete' | 'governance_policy_edit_details' | 'governance_policy_edit_duration' | 'governance_policy_export_created' | 'governance_policy_export_removed' | 'governance_policy_remove_folders' | 'governance_policy_report_created' | 'governance_policy_zip_part_downloaded' | 'legal_holds_activate_a_hold' | 'legal_holds_add_members' | 'legal_holds_change_hold_details' | 'legal_holds_change_hold_name' | 'legal_holds_export_a_hold' | 'legal_holds_export_cancelled' | 'legal_holds_export_downloaded' | 'legal_holds_export_removed' | 'legal_holds_release_a_hold' | 'legal_holds_remove_members' | 'legal_holds_report_a_hold' | 'device_change_ip_desktop' | 'device_change_ip_mobile' | 'device_change_ip_web' | 'device_delete_on_unlink_fail' | 'device_delete_on_unlink_success' | 'device_link_fail' | 'device_link_success' | 'device_management_disabled' | 'device_management_enabled' | 'device_sync_backup_status_changed' | 'device_unlink' | 'dropbox_passwords_exported' | 'dropbox_passwords_new_device_enrolled' | 'emm_refresh_auth_token' | 'external_drive_backup_eligibility_status_checked' | 'external_drive_backup_status_changed' | 'account_capture_change_availability' | 'account_capture_migrate_account' | 'account_capture_notification_emails_sent' | 'account_capture_relinquish_account' | 'disabled_domain_invites' | 'domain_invites_approve_request_to_join_team' | 'domain_invites_decline_request_to_join_team' | 'domain_invites_email_existing_users' | 'domain_invites_request_to_join_team' | 'domain_invites_set_invite_new_user_pref_to_no' | 'domain_invites_set_invite_new_user_pref_to_yes' | 'domain_verification_add_domain_fail' | 'domain_verification_add_domain_success' | 'domain_verification_remove_domain' | 'enabled_domain_invites' | 'apply_naming_convention' | 'create_folder' | 'file_add' | 'file_copy' | 'file_delete' | 'file_download' | 'file_edit' | 'file_get_copy_reference' | 'file_locking_lock_status_changed' | 'file_move' | 'file_permanently_delete' | 'file_preview' | 'file_rename' | 'file_restore' | 'file_revert' | 'file_rollback_changes' | 'file_save_copy_reference' | 'folder_overview_description_changed' | 'folder_overview_item_pinned' | 'folder_overview_item_unpinned' | 'object_label_added' | 'object_label_removed' | 'object_label_updated_value' | 'organize_folder_with_tidy' | 'rewind_folder' | 'undo_naming_convention' | 'undo_organize_folder_with_tidy' | 'user_tags_added' | 'user_tags_removed' | 'email_ingest_receive_file' | 'file_request_change' | 'file_request_close' | 'file_request_create' | 'file_request_delete' | 'file_request_receive_file' | 'group_add_external_id' | 'group_add_member' | 'group_change_external_id' | 'group_change_management_type' | 'group_change_member_role' | 'group_create' | 'group_delete' | 'group_description_updated' | 'group_join_policy_updated' | 'group_moved' | 'group_remove_external_id' | 'group_remove_member' | 'group_rename' | 'account_lock_or_unlocked' | 'emm_error' | 'guest_admin_signed_in_via_trusted_teams' | 'guest_admin_signed_out_via_trusted_teams' | 'login_fail' | 'login_success' | 'logout' | 'reseller_support_session_end' | 'reseller_support_session_start' | 'sign_in_as_session_end' | 'sign_in_as_session_start' | 'sso_error' | 'create_team_invite_link' | 'delete_team_invite_link' | 'member_add_external_id' | 'member_add_name' | 'member_change_admin_role' | 'member_change_email' | 'member_change_external_id' | 'member_change_membership_type' | 'member_change_name' | 'member_change_reseller_role' | 'member_change_status' | 'member_delete_manual_contacts' | 'member_delete_profile_photo' | 'member_permanently_delete_account_contents' | 'member_remove_external_id' | 'member_set_profile_photo' | 'member_space_limits_add_custom_quota' | 'member_space_limits_change_custom_quota' | 'member_space_limits_change_status' | 'member_space_limits_remove_custom_quota' | 'member_suggest' | 'member_transfer_account_contents' | 'pending_secondary_email_added' | 'secondary_email_deleted' | 'secondary_email_verified' | 'secondary_mails_policy_changed' | 'binder_add_page' | 'binder_add_section' | 'binder_remove_page' | 'binder_remove_section' | 'binder_rename_page' | 'binder_rename_section' | 'binder_reorder_page' | 'binder_reorder_section' | 'paper_content_add_member' | 'paper_content_add_to_folder' | 'paper_content_archive' | 'paper_content_create' | 'paper_content_permanently_delete' | 'paper_content_remove_from_folder' | 'paper_content_remove_member' | 'paper_content_rename' | 'paper_content_restore' | 'paper_doc_add_comment' | 'paper_doc_change_member_role' | 'paper_doc_change_sharing_policy' | 'paper_doc_change_subscription' | 'paper_doc_deleted' | 'paper_doc_delete_comment' | 'paper_doc_download' | 'paper_doc_edit' | 'paper_doc_edit_comment' | 'paper_doc_followed' | 'paper_doc_mention' | 'paper_doc_ownership_changed' | 'paper_doc_request_access' | 'paper_doc_resolve_comment' | 'paper_doc_revert' | 'paper_doc_slack_share' | 'paper_doc_team_invite' | 'paper_doc_trashed' | 'paper_doc_unresolve_comment' | 'paper_doc_untrashed' | 'paper_doc_view' | 'paper_external_view_allow' | 'paper_external_view_default_team' | 'paper_external_view_forbid' | 'paper_folder_change_subscription' | 'paper_folder_deleted' | 'paper_folder_followed' | 'paper_folder_team_invite' | 'paper_published_link_change_permission' | 'paper_published_link_create' | 'paper_published_link_disabled' | 'paper_published_link_view' | 'password_change' | 'password_reset' | 'password_reset_all' | 'classification_create_report' | 'classification_create_report_fail' | 'emm_create_exceptions_report' | 'emm_create_usage_report' | 'export_members_report' | 'export_members_report_fail' | 'external_sharing_create_report' | 'external_sharing_report_failed' | 'no_expiration_link_gen_create_report' | 'no_expiration_link_gen_report_failed' | 'no_password_link_gen_create_report' | 'no_password_link_gen_report_failed' | 'no_password_link_view_create_report' | 'no_password_link_view_report_failed' | 'outdated_link_view_create_report' | 'outdated_link_view_report_failed' | 'paper_admin_export_start' | 'smart_sync_create_admin_privilege_report' | 'team_activity_create_report' | 'team_activity_create_report_fail' | 'collection_share' | 'file_transfers_file_add' | 'file_transfers_transfer_delete' | 'file_transfers_transfer_download' | 'file_transfers_transfer_send' | 'file_transfers_transfer_view' | 'note_acl_invite_only' | 'note_acl_link' | 'note_acl_team_link' | 'note_shared' | 'note_share_receive' | 'open_note_shared' | 'sf_add_group' | 'sf_allow_non_members_to_view_shared_links' | 'sf_external_invite_warn' | 'sf_fb_invite' | 'sf_fb_invite_change_role' | 'sf_fb_uninvite' | 'sf_invite_group' | 'sf_team_grant_access' | 'sf_team_invite' | 'sf_team_invite_change_role' | 'sf_team_join' | 'sf_team_join_from_oob_link' | 'sf_team_uninvite' | 'shared_content_add_invitees' | 'shared_content_add_link_expiry' | 'shared_content_add_link_password' | 'shared_content_add_member' | 'shared_content_change_downloads_policy' | 'shared_content_change_invitee_role' | 'shared_content_change_link_audience' | 'shared_content_change_link_expiry' | 'shared_content_change_link_password' | 'shared_content_change_member_role' | 'shared_content_change_viewer_info_policy' | 'shared_content_claim_invitation' | 'shared_content_copy' | 'shared_content_download' | 'shared_content_relinquish_membership' | 'shared_content_remove_invitees' | 'shared_content_remove_link_expiry' | 'shared_content_remove_link_password' | 'shared_content_remove_member' | 'shared_content_request_access' | 'shared_content_restore_invitees' | 'shared_content_restore_member' | 'shared_content_unshare' | 'shared_content_view' | 'shared_folder_change_link_policy' | 'shared_folder_change_members_inheritance_policy' | 'shared_folder_change_members_management_policy' | 'shared_folder_change_members_policy' | 'shared_folder_create' | 'shared_folder_decline_invitation' | 'shared_folder_mount' | 'shared_folder_nest' | 'shared_folder_transfer_ownership' | 'shared_folder_unmount' | 'shared_link_add_expiry' | 'shared_link_change_expiry' | 'shared_link_change_visibility' | 'shared_link_copy' | 'shared_link_create' | 'shared_link_disable' | 'shared_link_download' | 'shared_link_remove_expiry' | 'shared_link_settings_add_expiration' | 'shared_link_settings_add_password' | 'shared_link_settings_allow_download_disabled' | 'shared_link_settings_allow_download_enabled' | 'shared_link_settings_change_audience' | 'shared_link_settings_change_expiration' | 'shared_link_settings_change_password' | 'shared_link_settings_remove_expiration' | 'shared_link_settings_remove_password' | 'shared_link_share' | 'shared_link_view' | 'shared_note_opened' | 'shmodel_disable_downloads' | 'shmodel_enable_downloads' | 'shmodel_group_share' | 'showcase_access_granted' | 'showcase_add_member' | 'showcase_archived' | 'showcase_created' | 'showcase_delete_comment' | 'showcase_edited' | 'showcase_edit_comment' | 'showcase_file_added' | 'showcase_file_download' | 'showcase_file_removed' | 'showcase_file_view' | 'showcase_permanently_deleted' | 'showcase_post_comment' | 'showcase_remove_member' | 'showcase_renamed' | 'showcase_request_access' | 'showcase_resolve_comment' | 'showcase_restored' | 'showcase_trashed' | 'showcase_trashed_deprecated' | 'showcase_unresolve_comment' | 'showcase_untrashed' | 'showcase_untrashed_deprecated' | 'showcase_view' | 'sso_add_cert' | 'sso_add_login_url' | 'sso_add_logout_url' | 'sso_change_cert' | 'sso_change_login_url' | 'sso_change_logout_url' | 'sso_change_saml_identity_mode' | 'sso_remove_cert' | 'sso_remove_login_url' | 'sso_remove_logout_url' | 'team_folder_change_status' | 'team_folder_create' | 'team_folder_downgrade' | 'team_folder_permanently_delete' | 'team_folder_rename' | 'team_selective_sync_settings_changed' | 'account_capture_change_policy' | 'admin_email_reminders_changed' | 'allow_download_disabled' | 'allow_download_enabled' | 'app_permissions_changed' | 'camera_uploads_policy_changed' | 'capture_transcript_policy_changed' | 'classification_change_policy' | 'computer_backup_policy_changed' | 'content_administration_policy_changed' | 'data_placement_restriction_change_policy' | 'data_placement_restriction_satisfy_policy' | 'device_approvals_add_exception' | 'device_approvals_change_desktop_policy' | 'device_approvals_change_mobile_policy' | 'device_approvals_change_overage_action' | 'device_approvals_change_unlink_action' | 'device_approvals_remove_exception' | 'directory_restrictions_add_members' | 'directory_restrictions_remove_members' | 'dropbox_passwords_policy_changed' | 'email_ingest_policy_changed' | 'emm_add_exception' | 'emm_change_policy' | 'emm_remove_exception' | 'extended_version_history_change_policy' | 'external_drive_backup_policy_changed' | 'file_comments_change_policy' | 'file_locking_policy_changed' | 'file_provider_migration_policy_changed' | 'file_requests_change_policy' | 'file_requests_emails_enabled' | 'file_requests_emails_restricted_to_team_only' | 'file_transfers_policy_changed' | 'folder_link_restriction_policy_changed' | 'google_sso_change_policy' | 'group_user_management_change_policy' | 'integration_policy_changed' | 'invite_acceptance_email_policy_changed' | 'member_requests_change_policy' | 'member_send_invite_policy_changed' | 'member_space_limits_add_exception' | 'member_space_limits_change_caps_type_policy' | 'member_space_limits_change_policy' | 'member_space_limits_remove_exception' | 'member_suggestions_change_policy' | 'microsoft_office_addin_change_policy' | 'network_control_change_policy' | 'paper_change_deployment_policy' | 'paper_change_member_link_policy' | 'paper_change_member_policy' | 'paper_change_policy' | 'paper_default_folder_policy_changed' | 'paper_desktop_policy_changed' | 'paper_enabled_users_group_addition' | 'paper_enabled_users_group_removal' | 'password_strength_requirements_change_policy' | 'permanent_delete_change_policy' | 'reseller_support_change_policy' | 'rewind_policy_changed' | 'send_for_signature_policy_changed' | 'sharing_change_folder_join_policy' | 'sharing_change_link_allow_change_expiration_policy' | 'sharing_change_link_default_expiration_policy' | 'sharing_change_link_enforce_password_policy' | 'sharing_change_link_policy' | 'sharing_change_member_policy' | 'showcase_change_download_policy' | 'showcase_change_enabled_policy' | 'showcase_change_external_sharing_policy' | 'smarter_smart_sync_policy_changed' | 'smart_sync_change_policy' | 'smart_sync_not_opt_out' | 'smart_sync_opt_out' | 'sso_change_policy' | 'team_branding_policy_changed' | 'team_extensions_policy_changed' | 'team_selective_sync_policy_changed' | 'team_sharing_whitelist_subjects_changed' | 'tfa_add_exception' | 'tfa_change_policy' | 'tfa_remove_exception' | 'two_account_change_policy' | 'viewer_info_policy_changed' | 'watermarking_policy_changed' | 'web_sessions_change_active_session_limit' | 'web_sessions_change_fixed_length_policy' | 'web_sessions_change_idle_length_policy' | 'data_residency_migration_request_successful' | 'data_residency_migration_request_unsuccessful' | 'team_merge_from' | 'team_merge_to' | 'team_profile_add_background' | 'team_profile_add_logo' | 'team_profile_change_background' | 'team_profile_change_default_language' | 'team_profile_change_logo' | 'team_profile_change_name' | 'team_profile_remove_background' | 'team_profile_remove_logo' | 'tfa_add_backup_phone' | 'tfa_add_security_key' | 'tfa_change_backup_phone' | 'tfa_change_status' | 'tfa_remove_backup_phone' | 'tfa_remove_security_key' | 'tfa_reset' | 'changed_enterprise_admin_role' | 'changed_enterprise_connected_team_status' | 'ended_enterprise_admin_session' | 'ended_enterprise_admin_session_deprecated' | 'enterprise_settings_locking' | 'guest_admin_change_status' | 'started_enterprise_admin_session' | 'team_merge_request_accepted' | 'team_merge_request_accepted_shown_to_primary_team' | 'team_merge_request_accepted_shown_to_secondary_team' | 'team_merge_request_auto_canceled' | 'team_merge_request_canceled' | 'team_merge_request_canceled_shown_to_primary_team' | 'team_merge_request_canceled_shown_to_secondary_team' | 'team_merge_request_expired' | 'team_merge_request_expired_shown_to_primary_team' | 'team_merge_request_expired_shown_to_secondary_team' | 'team_merge_request_rejected_shown_to_primary_team' | 'team_merge_request_rejected_shown_to_secondary_team' | 'team_merge_request_reminder' | 'team_merge_request_reminder_shown_to_primary_team' | 'team_merge_request_reminder_shown_to_secondary_team' | 'team_merge_request_revoked' | 'team_merge_request_sent_shown_to_primary_team' | 'team_merge_request_sent_shown_to_secondary_team' | 'other' Tag identifying the union variant. -
TeamLogExportMembersReportDetails
-
Created member data report.
Type:
- Object
-
TeamLogExportMembersReportFailDetails
-
Failed to create members data report.
Type:
- Object
Properties:
Name Type Description failure_reasonTeamTeamReportFailureReason Failure reason. -
TeamLogExportMembersReportFailType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogExportMembersReportType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogExtendedVersionHistoryChangePolicyDetails
-
Accepted/opted out of extended version history.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogExtendedVersionHistoryPolicy New extended version history policy. previous_valueTeamLogExtendedVersionHistoryPolicy <optional>
Previous extended version history policy. Might be missing due to historical data gap. -
TeamLogExtendedVersionHistoryChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogExtendedVersionHistoryPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'explicitly_limited' | 'explicitly_unlimited' | 'implicitly_limited' | 'implicitly_unlimited' | 'other' Tag identifying the union variant. -
TeamLogExternalDriveBackupEligibilityStatus
-
External Drive Backup eligibility status
Type:
- Object
Properties:
Name Type Description .tag'exceed_license_cap' | 'success' | 'other' Tag identifying the union variant. -
TeamLogExternalDriveBackupEligibilityStatusCheckedDetails
-
Checked external drive backup eligibility status.
Type:
- Object
Properties:
Name Type Description desktop_device_session_infoTeamLogDesktopDeviceSessionLogInfo Device's session logged information. statusTeamLogExternalDriveBackupEligibilityStatus Current eligibility status of external drive backup. number_of_external_drive_backupnumber Total number of valid external drive backup for all the team members. -
TeamLogExternalDriveBackupEligibilityStatusCheckedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogExternalDriveBackupPolicy
-
Policy for controlling team access to external drive backup feature
Type:
- Object
Properties:
Name Type Description .tag'default' | 'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogExternalDriveBackupPolicyChangedDetails
-
Changed external drive backup policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogExternalDriveBackupPolicy New external drive backup policy. previous_valueTeamLogExternalDriveBackupPolicy Previous external drive backup policy. -
TeamLogExternalDriveBackupPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogExternalDriveBackupStatus
-
External Drive Backup status
Type:
- Object
Properties:
Name Type Description .tag'broken' | 'created' | 'created_or_broken' | 'deleted' | 'empty' | 'unknown' | 'other' Tag identifying the union variant. -
TeamLogExternalDriveBackupStatusChangedDetails
-
Modified external drive backup.
Type:
- Object
Properties:
Name Type Description desktop_device_session_infoTeamLogDesktopDeviceSessionLogInfo Device's session logged information. previous_valueTeamLogExternalDriveBackupStatus Previous status of this external drive backup. new_valueTeamLogExternalDriveBackupStatus Next status of this external drive backup. -
TeamLogExternalDriveBackupStatusChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogExternalSharingCreateReportDetails
-
Created External sharing report.
Type:
- Object
-
TeamLogExternalSharingCreateReportType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogExternalSharingReportFailedDetails
-
Couldn't create External sharing report.
Type:
- Object
Properties:
Name Type Description failure_reasonTeamTeamReportFailureReason Failure reason. -
TeamLogExternalSharingReportFailedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogExternalUserLogInfo
-
A user without a Dropbox account.
Type:
- Object
Properties:
Name Type Description user_identifierstring An external user identifier. identifier_typeTeamLogIdentifierType Identifier type. -
TeamLogFailureDetailsLogInfo
-
Provides details about a failure
Type:
- Object
Properties:
Name Type Argument Description user_friendly_messagestring <optional>
A user friendly explanation of the error. technical_error_messagestring <optional>
A technical explanation of the error. This is relevant for some errors. -
TeamLogFedAdminRole
-
Type:
- Object
Properties:
Name Type Description .tag'enterprise_admin' | 'not_enterprise_admin' | 'other' Tag identifying the union variant. -
TeamLogFederationStatusChangeAdditionalInfo
-
Additional information about the organization or connected team
Type:
- Object
Properties:
Name Type Argument Description connected_team_nameTeamLogConnectedTeamName <optional>
Available if .tag is connected_team_name. The name of the team. non_trusted_team_detailsTeamLogNonTrustedTeamDetails <optional>
Available if .tag is non_trusted_team_details. The email to which the request was sent. organization_nameTeamLogOrganizationName <optional>
Available if .tag is organization_name. The name of the organization. .tag'connected_team_name' | 'non_trusted_team_details' | 'organization_name' | 'other' Tag identifying the union variant. -
TeamLogFedExtraDetails
-
More details about the organization or team.
Type:
- Object
Properties:
Name Type Argument Description organizationTeamLogOrganizationDetails <optional>
Available if .tag is organization. More details about the organization. teamTeamLogTeamDetails <optional>
Available if .tag is team. More details about the team. .tag'organization' | 'team' | 'other' Tag identifying the union variant. -
TeamLogFedHandshakeAction
-
Type:
- Object
Properties:
Name Type Description .tag'accepted_invite' | 'canceled_invite' | 'invite_expired' | 'invited' | 'rejected_invite' | 'removed_team' | 'other' Tag identifying the union variant. -
TeamLogFileAddCommentDetails
-
Added file comment.
Type:
- Object
Properties:
Name Type Argument Description comment_textstring <optional>
Comment text. -
TeamLogFileAddCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileAddDetails
-
Added files and/or folders.
Type:
- Object
-
TeamLogFileAddType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileChangeCommentSubscriptionDetails
-
Subscribed to or unsubscribed from comment notifications for file.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogFileCommentNotificationPolicy New file comment subscription. previous_valueTeamLogFileCommentNotificationPolicy <optional>
Previous file comment subscription. Might be missing due to historical data gap. -
TeamLogFileChangeCommentSubscriptionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileCommentNotificationPolicy
-
Enable or disable file comments notifications
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogFileCommentsChangePolicyDetails
-
Enabled/disabled commenting on team files.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogFileCommentsPolicy New commenting on team files policy. previous_valueTeamLogFileCommentsPolicy <optional>
Previous commenting on team files policy. Might be missing due to historical data gap. -
TeamLogFileCommentsChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileCommentsPolicy
-
File comments policy
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogFileCopyDetails
-
Copied files and/or folders.
Type:
- Object
Properties:
Name Type Description relocate_action_detailsArray.<TeamLogRelocateAssetReferencesLogInfo> Relocate action details. -
TeamLogFileCopyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileDeleteCommentDetails
-
Deleted file comment.
Type:
- Object
Properties:
Name Type Argument Description comment_textstring <optional>
Comment text. -
TeamLogFileDeleteCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileDeleteDetails
-
Deleted files and/or folders.
Type:
- Object
-
TeamLogFileDeleteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileDownloadDetails
-
Downloaded files and/or folders.
Type:
- Object
-
TeamLogFileDownloadType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileEditCommentDetails
-
Edited file comment.
Type:
- Object
Properties:
Name Type Argument Description previous_comment_textstring Previous comment text. comment_textstring <optional>
Comment text. -
TeamLogFileEditCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileEditDetails
-
Edited files.
Type:
- Object
-
TeamLogFileEditType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileGetCopyReferenceDetails
-
Created copy reference to file/folder.
Type:
- Object
-
TeamLogFileGetCopyReferenceType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileLikeCommentDetails
-
Liked file comment.
Type:
- Object
Properties:
Name Type Argument Description comment_textstring <optional>
Comment text. -
TeamLogFileLikeCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileLockingLockStatusChangedDetails
-
Locked/unlocked editing for a file.
Type:
- Object
Properties:
Name Type Description previous_valueTeamLogLockStatus Previous lock status of the file. new_valueTeamLogLockStatus New lock status of the file. -
TeamLogFileLockingLockStatusChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileLockingPolicyChangedDetails
-
Changed file locking policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamPoliciesFileLockingPolicyState New file locking policy. previous_valueTeamPoliciesFileLockingPolicyState Previous file locking policy. -
TeamLogFileLockingPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileLogInfo
-
File's logged information.
Type:
- Object
Properties:
Name Type Argument Description pathTeamLogPathLogInfo Path relative to event context. display_namestring <optional>
Display name. file_idstring <optional>
Unique ID. file_sizenumber <optional>
File or folder size in bytes. -
TeamLogFileMoveDetails
-
Moved files and/or folders.
Type:
- Object
Properties:
Name Type Description relocate_action_detailsArray.<TeamLogRelocateAssetReferencesLogInfo> Relocate action details. -
TeamLogFileMoveType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileOrFolderLogInfo
-
Generic information relevant both for files and folders
Type:
- Object
Properties:
Name Type Argument Description pathTeamLogPathLogInfo Path relative to event context. display_namestring <optional>
Display name. file_idstring <optional>
Unique ID. file_sizenumber <optional>
File or folder size in bytes. -
TeamLogFilePermanentlyDeleteDetails
-
Permanently deleted files and/or folders.
Type:
- Object
-
TeamLogFilePermanentlyDeleteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFilePreviewDetails
-
Previewed files and/or folders.
Type:
- Object
-
TeamLogFilePreviewType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileProviderMigrationPolicyChangedDetails
-
Changed File Provider Migration policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamPoliciesFileProviderMigrationPolicyState To. previous_valueTeamPoliciesFileProviderMigrationPolicyState From. -
TeamLogFileProviderMigrationPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRenameDetails
-
Renamed files and/or folders.
Type:
- Object
Properties:
Name Type Description relocate_action_detailsArray.<TeamLogRelocateAssetReferencesLogInfo> Relocate action details. -
TeamLogFileRenameType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRequestChangeDetails
-
Changed file request.
Type:
- Object
Properties:
Name Type Argument Description new_detailsTeamLogFileRequestDetails New file request details. file_request_idstring <optional>
File request id. Might be missing due to historical data gap. previous_detailsTeamLogFileRequestDetails <optional>
Previous file request details. Might be missing due to historical data gap. -
TeamLogFileRequestChangeType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRequestCloseDetails
-
Closed file request.
Type:
- Object
Properties:
Name Type Argument Description file_request_idstring <optional>
File request id. Might be missing due to historical data gap. previous_detailsTeamLogFileRequestDetails <optional>
Previous file request details. Might be missing due to historical data gap. -
TeamLogFileRequestCloseType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRequestCreateDetails
-
Created file request.
Type:
- Object
Properties:
Name Type Argument Description file_request_idstring <optional>
File request id. Might be missing due to historical data gap. request_detailsTeamLogFileRequestDetails <optional>
File request details. Might be missing due to historical data gap. -
TeamLogFileRequestCreateType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRequestDeadline
-
File request deadline
Type:
- Object
Properties:
Name Type Argument Description deadlineTimestamp <optional>
The deadline for this file request. Might be missing due to historical data gap. allow_late_uploadsstring <optional>
If set, allow uploads after the deadline has passed. -
TeamLogFileRequestDeleteDetails
-
Delete file request.
Type:
- Object
Properties:
Name Type Argument Description file_request_idstring <optional>
File request id. Might be missing due to historical data gap. previous_detailsTeamLogFileRequestDetails <optional>
Previous file request details. Might be missing due to historical data gap. -
TeamLogFileRequestDeleteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRequestDetails
-
File request details
Type:
- Object
Properties:
Name Type Argument Description asset_indexnumber Asset position in the Assets list. deadlineTeamLogFileRequestDeadline <optional>
File request deadline. -
TeamLogFileRequestReceiveFileDetails
-
Received files for file request.
Type:
- Object
Properties:
Name Type Argument Description submitted_file_namesArray.<string> Submitted file names. file_request_idstring <optional>
File request id. Might be missing due to historical data gap. file_request_detailsTeamLogFileRequestDetails <optional>
File request details. Might be missing due to historical data gap. submitter_namestring <optional>
The name as provided by the submitter. submitter_emailstring <optional>
The email as provided by the submitter. -
TeamLogFileRequestReceiveFileType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRequestsChangePolicyDetails
-
Enabled/disabled file requests.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogFileRequestsPolicy New file requests policy. previous_valueTeamLogFileRequestsPolicy <optional>
Previous file requests policy. Might be missing due to historical data gap. -
TeamLogFileRequestsChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRequestsEmailsEnabledDetails
-
Enabled file request emails for everyone.
Type:
- Object
-
TeamLogFileRequestsEmailsEnabledType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRequestsEmailsRestrictedToTeamOnlyDetails
-
Enabled file request emails for team.
Type:
- Object
-
TeamLogFileRequestsEmailsRestrictedToTeamOnlyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRequestsPolicy
-
File requests policy
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogFileResolveCommentDetails
-
Resolved file comment.
Type:
- Object
Properties:
Name Type Argument Description comment_textstring <optional>
Comment text. -
TeamLogFileResolveCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRestoreDetails
-
Restored deleted files and/or folders.
Type:
- Object
-
TeamLogFileRestoreType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRevertDetails
-
Reverted files to previous version.
Type:
- Object
-
TeamLogFileRevertType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileRollbackChangesDetails
-
Rolled back file actions.
Type:
- Object
-
TeamLogFileRollbackChangesType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileSaveCopyReferenceDetails
-
Saved file/folder using copy reference.
Type:
- Object
Properties:
Name Type Description relocate_action_detailsArray.<TeamLogRelocateAssetReferencesLogInfo> Relocate action details. -
TeamLogFileSaveCopyReferenceType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileTransfersFileAddDetails
-
Transfer files added.
Type:
- Object
Properties:
Name Type Description file_transfer_idstring Transfer id. -
TeamLogFileTransfersFileAddType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileTransfersPolicy
-
File transfers policy
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogFileTransfersPolicyChangedDetails
-
Changed file transfers policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogFileTransfersPolicy New file transfers policy. previous_valueTeamLogFileTransfersPolicy Previous file transfers policy. -
TeamLogFileTransfersPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileTransfersTransferDeleteDetails
-
Deleted transfer.
Type:
- Object
Properties:
Name Type Description file_transfer_idstring Transfer id. -
TeamLogFileTransfersTransferDeleteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileTransfersTransferDownloadDetails
-
Transfer downloaded.
Type:
- Object
Properties:
Name Type Description file_transfer_idstring Transfer id. -
TeamLogFileTransfersTransferDownloadType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileTransfersTransferSendDetails
-
Sent transfer.
Type:
- Object
Properties:
Name Type Description file_transfer_idstring Transfer id. -
TeamLogFileTransfersTransferSendType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileTransfersTransferViewDetails
-
Viewed transfer.
Type:
- Object
Properties:
Name Type Description file_transfer_idstring Transfer id. -
TeamLogFileTransfersTransferViewType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileUnlikeCommentDetails
-
Unliked file comment.
Type:
- Object
Properties:
Name Type Argument Description comment_textstring <optional>
Comment text. -
TeamLogFileUnlikeCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFileUnresolveCommentDetails
-
Unresolved file comment.
Type:
- Object
Properties:
Name Type Argument Description comment_textstring <optional>
Comment text. -
TeamLogFileUnresolveCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFolderLinkRestrictionPolicy
-
Policy for deciding whether applying link restrictions on all team owned folders
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogFolderLinkRestrictionPolicyChangedDetails
-
Changed folder link restrictions policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogFolderLinkRestrictionPolicy To. previous_valueTeamLogFolderLinkRestrictionPolicy From. -
TeamLogFolderLinkRestrictionPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFolderLogInfo
-
Folder's logged information.
Type:
- Object
Properties:
Name Type Argument Description pathTeamLogPathLogInfo Path relative to event context. display_namestring <optional>
Display name. file_idstring <optional>
Unique ID. file_sizenumber <optional>
File or folder size in bytes. file_countnumber <optional>
Number of files within the folder. -
TeamLogFolderOverviewDescriptionChangedDetails
-
Updated folder overview.
Type:
- Object
Properties:
Name Type Description folder_overview_location_assetnumber Folder Overview location position in the Assets list. -
TeamLogFolderOverviewDescriptionChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFolderOverviewItemPinnedDetails
-
Pinned item to folder overview.
Type:
- Object
Properties:
Name Type Description folder_overview_location_assetnumber Folder Overview location position in the Assets list. pinned_items_asset_indicesArray.<number> Pinned items positions in the Assets list. -
TeamLogFolderOverviewItemPinnedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogFolderOverviewItemUnpinnedDetails
-
Unpinned item from folder overview.
Type:
- Object
Properties:
Name Type Description folder_overview_location_assetnumber Folder Overview location position in the Assets list. pinned_items_asset_indicesArray.<number> Pinned items positions in the Assets list. -
TeamLogFolderOverviewItemUnpinnedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGeoLocationLogInfo
-
Geographic location details.
Type:
- Object
Properties:
Name Type Argument Description ip_addressstring IP address. citystring <optional>
City name. regionstring <optional>
Region name. countrystring <optional>
Country code. -
TeamLogGetTeamEventsArg
-
Type:
- Object
Properties:
Name Type Argument Description limitnumber 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 get_events/continue. account_idstring <optional>
Filter the events by account ID. Return only events with this account_id as either Actor, Context, or Participants. timeTeamCommonTimeRange <optional>
Filter by time range. categoryTeamLogEventCategory <optional>
Filter the returned events to a single category. Note that category shouldn't be provided together with event_type. event_typeTeamLogEventTypeArg <optional>
Filter the returned events to a single event type. Note that event_type shouldn't be provided together with category. -
TeamLogGetTeamEventsContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring Indicates from what point to get the next set of events. -
TeamLogGetTeamEventsContinueError
-
Errors that can be raised when calling get_events/continue.
Type:
- Object
Properties:
Name Type Argument Description resetTimestamp <optional>
Available if .tag is reset. Cursors are intended to be used quickly. Individual cursor values are normally valid for days, but in rare cases may be reset sooner. Cursor reset errors should be handled by fetching a new cursor from :route:`get_events`. The associated value is the approximate timestamp of the most recent event returned by the cursor. This should be used as a resumption point when calling :route:`get_events` to obtain a new cursor. .tag'bad_cursor' | 'reset' | 'other' Tag identifying the union variant. -
TeamLogGetTeamEventsError
-
Errors that can be raised when calling get_events.
Type:
- Object
Properties:
Name Type Description .tag'account_id_not_found' | 'invalid_time_range' | 'invalid_filters' | 'other' Tag identifying the union variant. -
TeamLogGetTeamEventsResult
-
Type:
- Object
Properties:
Name Type Description eventsArray.<TeamLogTeamEvent> List of events. Note that events are not guaranteed to be sorted by their timestamp value. cursorstring Pass the cursor into get_events/continue to obtain additional events. The value of cursor may change for each response from get_events/continue, regardless of the value of has_more; older cursor strings may expire. Thus, callers should ensure that they update their cursor based on the latest value of cursor after each call, and poll regularly if they wish to poll for new events. Callers should handle reset exceptions for expired cursors. has_moreboolean Is true if there may be additional events that have not been returned yet. An additional call to get_events/continue can retrieve them. Note that has_more may be true, even if events is empty. -
TeamLogGoogleSsoChangePolicyDetails
-
Enabled/disabled Google single sign-on for team.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogGoogleSsoPolicy New Google single sign-on policy. previous_valueTeamLogGoogleSsoPolicy <optional>
Previous Google single sign-on policy. Might be missing due to historical data gap. -
TeamLogGoogleSsoChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGoogleSsoPolicy
-
Google SSO policy
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogGovernancePolicyAddFolderFailedDetails
-
Couldn't add a folder to a policy.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. folderstring Folder. policy_typeTeamLogPolicyType <optional>
Policy type. reasonstring <optional>
Reason. -
TeamLogGovernancePolicyAddFolderFailedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGovernancePolicyAddFoldersDetails
-
Added folders to policy.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. policy_typeTeamLogPolicyType <optional>
Policy type. foldersArray.<string> <optional>
Folders. -
TeamLogGovernancePolicyAddFoldersType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGovernancePolicyContentDisposedDetails
-
Content disposed.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. disposition_typeTeamLogDispositionActionType Disposition type. policy_typeTeamLogPolicyType <optional>
Policy type. -
TeamLogGovernancePolicyContentDisposedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGovernancePolicyCreateDetails
-
Activated a new policy.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. durationTeamLogDurationLogInfo Duration in days. policy_typeTeamLogPolicyType <optional>
Policy type. foldersArray.<string> <optional>
Folders. -
TeamLogGovernancePolicyCreateType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGovernancePolicyDeleteDetails
-
Deleted a policy.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. policy_typeTeamLogPolicyType <optional>
Policy type. -
TeamLogGovernancePolicyDeleteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGovernancePolicyEditDetailsDetails
-
Edited policy.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. attributestring Attribute. previous_valuestring From. new_valuestring To. policy_typeTeamLogPolicyType <optional>
Policy type. -
TeamLogGovernancePolicyEditDetailsType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGovernancePolicyEditDurationDetails
-
Changed policy duration.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. previous_valueTeamLogDurationLogInfo From. new_valueTeamLogDurationLogInfo To. policy_typeTeamLogPolicyType <optional>
Policy type. -
TeamLogGovernancePolicyEditDurationType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGovernancePolicyExportCreatedDetails
-
Created a policy download.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. export_namestring Export name. policy_typeTeamLogPolicyType <optional>
Policy type. -
TeamLogGovernancePolicyExportCreatedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGovernancePolicyExportRemovedDetails
-
Removed a policy download.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. export_namestring Export name. policy_typeTeamLogPolicyType <optional>
Policy type. -
TeamLogGovernancePolicyExportRemovedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGovernancePolicyRemoveFoldersDetails
-
Removed folders from policy.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. policy_typeTeamLogPolicyType <optional>
Policy type. foldersArray.<string> <optional>
Folders. reasonstring <optional>
Reason. -
TeamLogGovernancePolicyRemoveFoldersType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGovernancePolicyReportCreatedDetails
-
Created a summary report for a policy.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. policy_typeTeamLogPolicyType <optional>
Policy type. -
TeamLogGovernancePolicyReportCreatedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGovernancePolicyZipPartDownloadedDetails
-
Downloaded content from a policy.
Type:
- Object
Properties:
Name Type Argument Description governance_policy_idstring Policy ID. namestring Policy name. export_namestring Export name. policy_typeTeamLogPolicyType <optional>
Policy type. partstring <optional>
Part. -
TeamLogGovernancePolicyZipPartDownloadedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupAddExternalIdDetails
-
Added external ID for group.
Type:
- Object
Properties:
Name Type Description new_valuestring Current external id. -
TeamLogGroupAddExternalIdType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupAddMemberDetails
-
Added team members to group.
Type:
- Object
Properties:
Name Type Description is_group_ownerboolean Is group owner. -
TeamLogGroupAddMemberType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupChangeExternalIdDetails
-
Changed external ID for group.
Type:
- Object
Properties:
Name Type Description new_valuestring Current external id. previous_valuestring Old external id. -
TeamLogGroupChangeExternalIdType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupChangeManagementTypeDetails
-
Changed group management type.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamCommonGroupManagementType New group management type. previous_valueTeamCommonGroupManagementType <optional>
Previous group management type. Might be missing due to historical data gap. -
TeamLogGroupChangeManagementTypeType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupChangeMemberRoleDetails
-
Changed manager permissions of group member.
Type:
- Object
Properties:
Name Type Description is_group_ownerboolean Is group owner. -
TeamLogGroupChangeMemberRoleType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupCreateDetails
-
Created group.
Type:
- Object
Properties:
Name Type Argument Description is_company_managedboolean <optional>
Is company managed group. join_policyTeamLogGroupJoinPolicy <optional>
Group join policy. -
TeamLogGroupCreateType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupDeleteDetails
-
Deleted group.
Type:
- Object
Properties:
Name Type Argument Description is_company_managedboolean <optional>
Is company managed group. -
TeamLogGroupDeleteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupDescriptionUpdatedDetails
-
Updated group.
Type:
- Object
-
TeamLogGroupDescriptionUpdatedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupJoinPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'open' | 'request_to_join' | 'other' Tag identifying the union variant. -
TeamLogGroupJoinPolicyUpdatedDetails
-
Updated group join policy.
Type:
- Object
Properties:
Name Type Argument Description is_company_managedboolean <optional>
Is company managed group. join_policyTeamLogGroupJoinPolicy <optional>
Group join policy. -
TeamLogGroupJoinPolicyUpdatedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupLogInfo
-
Group's logged information.
Type:
- Object
Properties:
Name Type Argument Description display_namestring The name of this group. group_idstring <optional>
The unique id of this group. external_idstring <optional>
External group ID. -
TeamLogGroupMovedDetails
-
Moved group.
Type:
- Object
-
TeamLogGroupMovedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupRemoveExternalIdDetails
-
Removed external ID for group.
Type:
- Object
Properties:
Name Type Description previous_valuestring Old external id. -
TeamLogGroupRemoveExternalIdType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupRemoveMemberDetails
-
Removed team members from group.
Type:
- Object
-
TeamLogGroupRemoveMemberType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupRenameDetails
-
Renamed group.
Type:
- Object
Properties:
Name Type Description previous_valuestring Previous display name. new_valuestring New display name. -
TeamLogGroupRenameType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGroupUserManagementChangePolicyDetails
-
Changed who can create groups.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamPoliciesGroupCreation New group users management policy. previous_valueTeamPoliciesGroupCreation <optional>
Previous group users management policy. Might be missing due to historical data gap. -
TeamLogGroupUserManagementChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGuestAdminChangeStatusDetails
-
Changed guest team admin status.
Type:
- Object
Properties:
Name Type Argument Description is_guestboolean True for guest, false for host. previous_valueTeamLogTrustedTeamsRequestState Previous request state. new_valueTeamLogTrustedTeamsRequestState New request state. action_detailsTeamLogTrustedTeamsRequestAction Action details. guest_team_namestring <optional>
The name of the guest team. host_team_namestring <optional>
The name of the host team. -
TeamLogGuestAdminChangeStatusType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGuestAdminSignedInViaTrustedTeamsDetails
-
Started trusted team admin session.
Type:
- Object
Properties:
Name Type Argument Description team_namestring <optional>
Host team name. trusted_team_namestring <optional>
Trusted team name. -
TeamLogGuestAdminSignedInViaTrustedTeamsType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogGuestAdminSignedOutViaTrustedTeamsDetails
-
Ended trusted team admin session.
Type:
- Object
Properties:
Name Type Argument Description team_namestring <optional>
Host team name. trusted_team_namestring <optional>
Trusted team name. -
TeamLogGuestAdminSignedOutViaTrustedTeamsType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogIdentifierType
-
Type:
- Object
Properties:
Name Type Description .tag'email' | 'facebook_profile_name' | 'other' Tag identifying the union variant. -
TeamLogIntegrationConnectedDetails
-
Connected integration for member.
Type:
- Object
Properties:
Name Type Description integration_namestring Name of the third-party integration. -
TeamLogIntegrationConnectedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogIntegrationDisconnectedDetails
-
Disconnected integration for member.
Type:
- Object
Properties:
Name Type Description integration_namestring Name of the third-party integration. -
TeamLogIntegrationDisconnectedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogIntegrationPolicy
-
Policy for controlling whether a service integration is enabled for the team.
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogIntegrationPolicyChangedDetails
-
Changed integration policy for team.
Type:
- Object
Properties:
Name Type Description integration_namestring Name of the third-party integration. new_valueTeamLogIntegrationPolicy New integration policy. previous_valueTeamLogIntegrationPolicy Previous integration policy. -
TeamLogIntegrationPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogInviteAcceptanceEmailPolicy
-
Policy for deciding whether team admins receive email when an invitation to join the team is accepted
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogInviteAcceptanceEmailPolicyChangedDetails
-
Changed invite accept email policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogInviteAcceptanceEmailPolicy To. previous_valueTeamLogInviteAcceptanceEmailPolicy From. -
TeamLogInviteAcceptanceEmailPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogInviteMethod
-
Type:
- Object
Properties:
Name Type Description .tag'auto_approve' | 'invite_link' | 'member_invite' | 'moved_from_another_team' | 'other' Tag identifying the union variant. -
TeamLogJoinTeamDetails
-
Additional information relevant when a new member joins the team.
Type:
- Object
Properties:
Name Type Argument Description linked_appsArray.<TeamLogUserLinkedAppLogInfo> Linked applications. (Deprecated) Please use has_linked_apps boolean field instead. linked_devicesArray.<TeamLogLinkedDeviceLogInfo> Linked devices. (Deprecated) Please use has_linked_devices boolean field instead. linked_shared_foldersArray.<TeamLogFolderLogInfo> Linked shared folders. (Deprecated) Please use has_linked_shared_folders boolean field instead. was_linked_apps_truncatedboolean <optional>
(Deprecated) True if the linked_apps list was truncated to the maximum supported length (50). was_linked_devices_truncatedboolean <optional>
(Deprecated) True if the linked_devices list was truncated to the maximum supported length (50). was_linked_shared_folders_truncatedboolean <optional>
(Deprecated) True if the linked_shared_folders list was truncated to the maximum supported length (50). has_linked_appsboolean <optional>
True if the user had linked apps at event time. has_linked_devicesboolean <optional>
True if the user had linked apps at event time. has_linked_shared_foldersboolean <optional>
True if the user had linked shared folders at event time. -
TeamLogLabelType
-
Label type
Type:
- Object
Properties:
Name Type Description .tag'personal_information' | 'test_only' | 'user_defined_tag' | 'other' Tag identifying the union variant. -
TeamLogLegacyDeviceSessionLogInfo
-
Information on sessions, in legacy format
Type:
- Object
Properties:
Name Type Argument Description .tag'legacy_device_session' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. ip_addressstring <optional>
The IP address of the last activity from this session. createdTimestamp <optional>
The time this session was created. updatedTimestamp <optional>
The time of the last activity from this session. session_infoTeamLogWebSessionLogInfo | TeamLogDesktopSessionLogInfo | TeamLogMobileSessionLogInfo | TeamLogSessionLogInfo <optional>
Session unique id. display_namestring <optional>
The device name. Might be missing due to historical data gap. is_emm_managedboolean <optional>
Is device managed by emm. Might be missing due to historical data gap. platformstring <optional>
Information on the hosting platform. Might be missing due to historical data gap. mac_addressstring <optional>
The mac address of the last activity from this session. Might be missing due to historical data gap. os_versionstring <optional>
The hosting OS version. Might be missing due to historical data gap. device_typestring <optional>
Information on the hosting device type. Might be missing due to historical data gap. client_versionstring <optional>
The Dropbox client version. Might be missing due to historical data gap. legacy_uniq_idstring <optional>
Alternative unique device session id, instead of session id field. Might be missing due to historical data gap. -
TeamLogLegalHoldsActivateAHoldDetails
-
Activated a hold.
Type:
- Object
-
TeamLogLegalHoldsActivateAHoldType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLegalHoldsAddMembersDetails
-
Added members to a hold.
Type:
- Object
Properties:
Name Type Description legal_hold_idstring Hold ID. namestring Hold name. -
TeamLogLegalHoldsAddMembersType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLegalHoldsChangeHoldDetailsDetails
-
Edited details for a hold.
Type:
- Object
Properties:
Name Type Description legal_hold_idstring Hold ID. namestring Hold name. previous_valuestring Previous details. new_valuestring New details. -
TeamLogLegalHoldsChangeHoldDetailsType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLegalHoldsChangeHoldNameDetails
-
Renamed a hold.
Type:
- Object
Properties:
Name Type Description legal_hold_idstring Hold ID. previous_valuestring Previous Name. new_valuestring New Name. -
TeamLogLegalHoldsChangeHoldNameType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLegalHoldsExportAHoldDetails
-
Exported hold.
Type:
- Object
Properties:
Name Type Argument Description legal_hold_idstring Hold ID. namestring Hold name. export_namestring <optional>
Export name. -
TeamLogLegalHoldsExportAHoldType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLegalHoldsExportCancelledDetails
-
Canceled export for a hold.
Type:
- Object
Properties:
Name Type Description legal_hold_idstring Hold ID. namestring Hold name. export_namestring Export name. -
TeamLogLegalHoldsExportCancelledType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLegalHoldsExportDownloadedDetails
-
Downloaded export for a hold.
Type:
- Object
Properties:
Name Type Argument Description legal_hold_idstring Hold ID. namestring Hold name. export_namestring Export name. partstring <optional>
Part. file_namestring <optional>
Filename. -
TeamLogLegalHoldsExportDownloadedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLegalHoldsExportRemovedDetails
-
Removed export for a hold.
Type:
- Object
Properties:
Name Type Description legal_hold_idstring Hold ID. namestring Hold name. export_namestring Export name. -
TeamLogLegalHoldsExportRemovedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLegalHoldsReleaseAHoldDetails
-
Released a hold.
Type:
- Object
Properties:
Name Type Description legal_hold_idstring Hold ID. namestring Hold name. -
TeamLogLegalHoldsReleaseAHoldType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLegalHoldsRemoveMembersDetails
-
Removed members from a hold.
Type:
- Object
Properties:
Name Type Description legal_hold_idstring Hold ID. namestring Hold name. -
TeamLogLegalHoldsRemoveMembersType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLegalHoldsReportAHoldDetails
-
Created a summary report for a hold.
Type:
- Object
Properties:
Name Type Description legal_hold_idstring Hold ID. namestring Hold name. -
TeamLogLegalHoldsReportAHoldType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLinkedDeviceLogInfo
-
The device sessions that user is linked to.
Type:
- Object
Properties:
Name Type Argument Description desktop_device_sessionTeamLogDesktopDeviceSessionLogInfo <optional>
Available if .tag is desktop_device_session. desktop device session's details. legacy_device_sessionTeamLogLegacyDeviceSessionLogInfo <optional>
Available if .tag is legacy_device_session. legacy device session's details. mobile_device_sessionTeamLogMobileDeviceSessionLogInfo <optional>
Available if .tag is mobile_device_session. mobile device session's details. web_device_sessionTeamLogWebDeviceSessionLogInfo <optional>
Available if .tag is web_device_session. web device session's details. .tag'desktop_device_session' | 'legacy_device_session' | 'mobile_device_session' | 'web_device_session' | 'other' Tag identifying the union variant. -
TeamLogLockStatus
-
File lock status
Type:
- Object
Properties:
Name Type Description .tag'locked' | 'unlocked' | 'other' Tag identifying the union variant. -
TeamLogLoginFailDetails
-
Failed to sign in.
Type:
- Object
Properties:
Name Type Argument Description login_methodTeamLogLoginMethod Login method. error_detailsTeamLogFailureDetailsLogInfo Error details. is_emm_managedboolean <optional>
Tells if the login device is EMM managed. Might be missing due to historical data gap. -
TeamLogLoginFailType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLoginMethod
-
Type:
- Object
Properties:
Name Type Description .tag'apple_oauth' | 'first_party_token_exchange' | 'google_oauth' | 'password' | 'qr_code' | 'saml' | 'two_factor_authentication' | 'web_session' | 'other' Tag identifying the union variant. -
TeamLogLoginSuccessDetails
-
Signed in.
Type:
- Object
Properties:
Name Type Argument Description login_methodTeamLogLoginMethod Login method. is_emm_managedboolean <optional>
Tells if the login device is EMM managed. Might be missing due to historical data gap. -
TeamLogLoginSuccessType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogLogoutDetails
-
Signed out.
Type:
- Object
Properties:
Name Type Argument Description login_idstring <optional>
Login session id. -
TeamLogLogoutType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberAddExternalIdDetails
-
Added an external ID for team member.
Type:
- Object
Properties:
Name Type Description new_valuestring Current external id. -
TeamLogMemberAddExternalIdType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberAddNameDetails
-
Added team member name.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogUserNameLogInfo New user's name. -
TeamLogMemberAddNameType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberChangeAdminRoleDetails
-
Changed team member admin role.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogAdminRole <optional>
New admin role. This field is relevant when the admin role is changed or whenthe user role changes from no admin rights to with admin rights. previous_valueTeamLogAdminRole <optional>
Previous admin role. This field is relevant when the admin role is changed or when the admin role is removed. -
TeamLogMemberChangeAdminRoleType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberChangeEmailDetails
-
Changed team member email.
Type:
- Object
Properties:
Name Type Argument Description new_valuestring New email. previous_valuestring <optional>
Previous email. Might be missing due to historical data gap. -
TeamLogMemberChangeEmailType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberChangeExternalIdDetails
-
Changed the external ID for team member.
Type:
- Object
Properties:
Name Type Description new_valuestring Current external id. previous_valuestring Old external id. -
TeamLogMemberChangeExternalIdType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberChangeMembershipTypeDetails
-
Changed membership type (limited/full) of member.
Type:
- Object
Properties:
Name Type Description prev_valueTeamLogTeamMembershipType Previous membership type. new_valueTeamLogTeamMembershipType New membership type. -
TeamLogMemberChangeMembershipTypeType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberChangeNameDetails
-
Changed team member name.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogUserNameLogInfo New user's name. previous_valueTeamLogUserNameLogInfo <optional>
Previous user's name. Might be missing due to historical data gap. -
TeamLogMemberChangeNameType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberChangeResellerRoleDetails
-
Changed team member reseller role.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogResellerRole New reseller role. This field is relevant when the reseller role is changed. previous_valueTeamLogResellerRole Previous reseller role. This field is relevant when the reseller role is changed or when the reseller role is removed. -
TeamLogMemberChangeResellerRoleType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberChangeStatusDetails
-
Changed member status (invited, joined, suspended, etc.).
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogMemberStatus New member status. previous_valueTeamLogMemberStatus <optional>
Previous member status. Might be missing due to historical data gap. actionTeamLogActionDetails <optional>
Additional information indicating the action taken that caused status change. new_teamstring <optional>
The user's new team name. This field is relevant when the user is transferred off the team. previous_teamstring <optional>
The user's previous team name. This field is relevant when the user is transferred onto the team. -
TeamLogMemberChangeStatusType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberDeleteManualContactsDetails
-
Cleared manually added contacts.
Type:
- Object
-
TeamLogMemberDeleteManualContactsType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberDeleteProfilePhotoDetails
-
Deleted team member profile photo.
Type:
- Object
-
TeamLogMemberDeleteProfilePhotoType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberPermanentlyDeleteAccountContentsDetails
-
Permanently deleted contents of deleted team member account.
Type:
- Object
-
TeamLogMemberPermanentlyDeleteAccountContentsType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberRemoveActionType
-
Type:
- Object
Properties:
Name Type Description .tag'delete' | 'leave' | 'offboard' | 'offboard_and_retain_team_folders' | 'other' Tag identifying the union variant. -
TeamLogMemberRemoveExternalIdDetails
-
Removed the external ID for team member.
Type:
- Object
Properties:
Name Type Description previous_valuestring Old external id. -
TeamLogMemberRemoveExternalIdType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberRequestsChangePolicyDetails
-
Changed whether users can find team when not invited.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogMemberRequestsPolicy New member change requests policy. previous_valueTeamLogMemberRequestsPolicy <optional>
Previous member change requests policy. Might be missing due to historical data gap. -
TeamLogMemberRequestsChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberRequestsPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'auto_accept' | 'disabled' | 'require_approval' | 'other' Tag identifying the union variant. -
TeamLogMemberSendInvitePolicy
-
Policy for controlling whether team members can send team invites
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'everyone' | 'specific_members' | 'other' Tag identifying the union variant. -
TeamLogMemberSendInvitePolicyChangedDetails
-
Changed member send invite policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogMemberSendInvitePolicy New team member send invite policy. previous_valueTeamLogMemberSendInvitePolicy Previous team member send invite policy. -
TeamLogMemberSendInvitePolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberSetProfilePhotoDetails
-
Set team member profile photo.
Type:
- Object
-
TeamLogMemberSetProfilePhotoType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberSpaceLimitsAddCustomQuotaDetails
-
Set custom member space limit.
Type:
- Object
Properties:
Name Type Description new_valuenumber New custom quota value in bytes. -
TeamLogMemberSpaceLimitsAddCustomQuotaType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberSpaceLimitsAddExceptionDetails
-
Added members to member space limit exception list.
Type:
- Object
-
TeamLogMemberSpaceLimitsAddExceptionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberSpaceLimitsChangeCapsTypePolicyDetails
-
Changed member space limit type for team.
Type:
- Object
Properties:
Name Type Description previous_valueTeamLogSpaceCapsType Previous space limit type. new_valueTeamLogSpaceCapsType New space limit type. -
TeamLogMemberSpaceLimitsChangeCapsTypePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberSpaceLimitsChangeCustomQuotaDetails
-
Changed custom member space limit.
Type:
- Object
Properties:
Name Type Description previous_valuenumber Previous custom quota value in bytes. new_valuenumber New custom quota value in bytes. -
TeamLogMemberSpaceLimitsChangeCustomQuotaType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberSpaceLimitsChangePolicyDetails
-
Changed team default member space limit.
Type:
- Object
Properties:
Name Type Argument Description previous_valuenumber <optional>
Previous team default limit value in bytes. Might be missing due to historical data gap. new_valuenumber <optional>
New team default limit value in bytes. Might be missing due to historical data gap. -
TeamLogMemberSpaceLimitsChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberSpaceLimitsChangeStatusDetails
-
Changed space limit status.
Type:
- Object
Properties:
Name Type Description previous_valueTeamLogSpaceLimitsStatus Previous storage quota status. new_valueTeamLogSpaceLimitsStatus New storage quota status. -
TeamLogMemberSpaceLimitsChangeStatusType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberSpaceLimitsRemoveCustomQuotaDetails
-
Removed custom member space limit.
Type:
- Object
-
TeamLogMemberSpaceLimitsRemoveCustomQuotaType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberSpaceLimitsRemoveExceptionDetails
-
Removed members from member space limit exception list.
Type:
- Object
-
TeamLogMemberSpaceLimitsRemoveExceptionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberStatus
-
Type:
- Object
Properties:
Name Type Description .tag'active' | 'invited' | 'moved_to_another_team' | 'not_joined' | 'removed' | 'suspended' | 'other' Tag identifying the union variant. -
TeamLogMemberSuggestDetails
-
Suggested person to add to team.
Type:
- Object
Properties:
Name Type Description suggested_membersArray.<Object> suggested users emails. -
TeamLogMemberSuggestionsChangePolicyDetails
-
Enabled/disabled option for team members to suggest people to add to team.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogMemberSuggestionsPolicy New team member suggestions policy. previous_valueTeamLogMemberSuggestionsPolicy <optional>
Previous team member suggestions policy. Might be missing due to historical data gap. -
TeamLogMemberSuggestionsChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberSuggestionsPolicy
-
Member suggestions policy
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogMemberSuggestType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberTransferAccountContentsDetails
-
Transferred contents of deleted member account to another member.
Type:
- Object
-
TeamLogMemberTransferAccountContentsType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMemberTransferredInternalFields
-
Internal only - fields for target team computations
Type:
- Object
Properties:
Name Type Description source_team_idstring Internal only - team user was moved from. target_team_idstring Internal only - team user was moved to. -
TeamLogMicrosoftOfficeAddinChangePolicyDetails
-
Enabled/disabled Microsoft Office add-in.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogMicrosoftOfficeAddinPolicy New Microsoft Office addin policy. previous_valueTeamLogMicrosoftOfficeAddinPolicy <optional>
Previous Microsoft Office addin policy. Might be missing due to historical data gap. -
TeamLogMicrosoftOfficeAddinChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogMicrosoftOfficeAddinPolicy
-
Microsoft Office addin policy
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogMissingDetails
-
An indication that an error occurred while retrieving the event. Some attributes of the event may be omitted as a result.
Type:
- Object
Properties:
Name Type Argument Description source_event_fieldsstring <optional>
All the data that could be retrieved and converted from the source event. -
TeamLogMobileDeviceSessionLogInfo
-
Information about linked Dropbox mobile client sessions
Type:
- Object
Properties:
Name Type Argument Description .tag'mobile_device_session' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. device_namestring The device name. client_typeTeamMobileClientPlatform The mobile application type. ip_addressstring <optional>
The IP address of the last activity from this session. createdTimestamp <optional>
The time this session was created. updatedTimestamp <optional>
The time of the last activity from this session. session_infoTeamLogMobileSessionLogInfo <optional>
Mobile session unique id. client_versionstring <optional>
The Dropbox client version. os_versionstring <optional>
The hosting OS version. last_carrierstring <optional>
last carrier used by the device. -
TeamLogMobileSessionLogInfo
-
Mobile session.
Type:
- Object
Properties:
Name Type Argument Description .tag'mobile' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. session_idstring <optional>
Session ID. -
TeamLogNamespaceRelativePathLogInfo
-
Namespace relative path details.
Type:
- Object
Properties:
Name Type Argument Description ns_idstring <optional>
Namespace ID. relative_pathstring <optional>
A path relative to the specified namespace ID. is_shared_namespaceboolean <optional>
True if the namespace is shared. -
TeamLogNetworkControlChangePolicyDetails
-
Enabled/disabled network control.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogNetworkControlPolicy New network control policy. previous_valueTeamLogNetworkControlPolicy <optional>
Previous network control policy. Might be missing due to historical data gap. -
TeamLogNetworkControlChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogNetworkControlPolicy
-
Network control policy
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogNoExpirationLinkGenCreateReportDetails
-
Report created: Links created with no expiration.
Type:
- Object
-
TeamLogNoExpirationLinkGenCreateReportType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogNoExpirationLinkGenReportFailedDetails
-
Couldn't create report: Links created with no expiration.
Type:
- Object
Properties:
Name Type Description failure_reasonTeamTeamReportFailureReason Failure reason. -
TeamLogNoExpirationLinkGenReportFailedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogNonTeamMemberLogInfo
-
Non team member's logged information.
Type:
- Object
Properties:
Name Type Argument Description .tag'non_team_member' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. account_idstring <optional>
User unique ID. display_namestring <optional>
User display name. emailstring <optional>
User email address. -
TeamLogNonTrustedTeamDetails
-
The email to which the request was sent
Type:
- Object
Properties:
Name Type Description teamstring The email to which the request was sent. -
TeamLogNoPasswordLinkGenCreateReportDetails
-
Report created: Links created without passwords.
Type:
- Object
-
TeamLogNoPasswordLinkGenCreateReportType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogNoPasswordLinkGenReportFailedDetails
-
Couldn't create report: Links created without passwords.
Type:
- Object
Properties:
Name Type Description failure_reasonTeamTeamReportFailureReason Failure reason. -
TeamLogNoPasswordLinkGenReportFailedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogNoPasswordLinkViewCreateReportDetails
-
Report created: Views of links without passwords.
Type:
- Object
-
TeamLogNoPasswordLinkViewCreateReportType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogNoPasswordLinkViewReportFailedDetails
-
Couldn't create report: Views of links without passwords.
Type:
- Object
Properties:
Name Type Description failure_reasonTeamTeamReportFailureReason Failure reason. -
TeamLogNoPasswordLinkViewReportFailedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogNoteAclInviteOnlyDetails
-
Changed Paper doc to invite-only.
Type:
- Object
-
TeamLogNoteAclInviteOnlyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogNoteAclLinkDetails
-
Changed Paper doc to link-accessible.
Type:
- Object
-
TeamLogNoteAclLinkType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogNoteAclTeamLinkDetails
-
Changed Paper doc to link-accessible for team.
Type:
- Object
-
TeamLogNoteAclTeamLinkType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Shared Paper doc.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Shared received Paper doc.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogObjectLabelAddedDetails
-
Added a label.
Type:
- Object
Properties:
Name Type Description label_typeTeamLogLabelType Labels mark a file or folder. -
TeamLogObjectLabelAddedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogObjectLabelRemovedDetails
-
Removed a label.
Type:
- Object
Properties:
Name Type Description label_typeTeamLogLabelType Labels mark a file or folder. -
TeamLogObjectLabelRemovedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogObjectLabelUpdatedValueDetails
-
Updated a label's value.
Type:
- Object
Properties:
Name Type Description label_typeTeamLogLabelType Labels mark a file or folder. -
TeamLogObjectLabelUpdatedValueType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Opened shared Paper doc.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogOrganizationDetails
-
More details about the organization.
Type:
- Object
Properties:
Name Type Description organizationstring The name of the organization. -
TeamLogOrganizationName
-
The name of the organization
Type:
- Object
Properties:
Name Type Description organizationstring The name of the organization. -
TeamLogOrganizeFolderWithTidyDetails
-
Organized a folder with multi-file organize.
Type:
- Object
-
TeamLogOrganizeFolderWithTidyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogOriginLogInfo
-
The origin from which the actor performed the action.
Type:
- Object
Properties:
Name Type Argument Description access_methodTeamLogAccessMethodLogInfo The method that was used to perform the action. geo_locationTeamLogGeoLocationLogInfo <optional>
Geographic location details. -
TeamLogOutdatedLinkViewCreateReportDetails
-
Report created: Views of old links.
Type:
- Object
-
TeamLogOutdatedLinkViewCreateReportType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogOutdatedLinkViewReportFailedDetails
-
Couldn't create report: Views of old links.
Type:
- Object
Properties:
Name Type Description failure_reasonTeamTeamReportFailureReason Failure reason. -
TeamLogOutdatedLinkViewReportFailedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperAccessType
-
Type:
- Object
Properties:
Name Type Description .tag'commenter' | 'editor' | 'viewer' | 'other' Tag identifying the union variant. -
TeamLogPaperAdminExportStartDetails
-
Exported all team Paper docs.
Type:
- Object
-
TeamLogPaperAdminExportStartType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperChangeDeploymentPolicyDetails
-
Changed whether Dropbox Paper, when enabled, is deployed to all members or to specific members.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamPoliciesPaperDeploymentPolicy New Dropbox Paper deployment policy. previous_valueTeamPoliciesPaperDeploymentPolicy <optional>
Previous Dropbox Paper deployment policy. Might be missing due to historical data gap. -
TeamLogPaperChangeDeploymentPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperChangeMemberLinkPolicyDetails
-
Changed whether non-members can view Paper docs with link.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogPaperMemberPolicy New paper external link accessibility policy. -
TeamLogPaperChangeMemberLinkPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperChangeMemberPolicyDetails
-
Changed whether members can share Paper docs outside team, and if docs are accessible only by team members or anyone by default.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogPaperMemberPolicy New paper external accessibility policy. previous_valueTeamLogPaperMemberPolicy <optional>
Previous paper external accessibility policy. Might be missing due to historical data gap. -
TeamLogPaperChangeMemberPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperChangePolicyDetails
-
Enabled/disabled Dropbox Paper for team.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamPoliciesPaperEnabledPolicy New Dropbox Paper policy. previous_valueTeamPoliciesPaperEnabledPolicy <optional>
Previous Dropbox Paper policy. Might be missing due to historical data gap. -
TeamLogPaperChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperContentAddMemberDetails
-
Added users and/or groups to Paper doc/folder.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperContentAddMemberType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperContentAddToFolderDetails
-
Added Paper doc/folder to folder.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. target_asset_indexnumber Target asset position in the Assets list. parent_asset_indexnumber Parent asset position in the Assets list. -
TeamLogPaperContentAddToFolderType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperContentArchiveDetails
-
Archived Paper doc/folder.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperContentArchiveType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperContentCreateDetails
-
Created Paper doc/folder.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperContentCreateType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperContentPermanentlyDeleteDetails
-
Permanently deleted Paper doc/folder.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperContentPermanentlyDeleteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperContentRemoveFromFolderDetails
-
Removed Paper doc/folder from folder.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. target_asset_indexnumber <optional>
Target asset position in the Assets list. parent_asset_indexnumber <optional>
Parent asset position in the Assets list. -
TeamLogPaperContentRemoveFromFolderType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperContentRemoveMemberDetails
-
Removed users and/or groups from Paper doc/folder.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperContentRemoveMemberType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperContentRenameDetails
-
Renamed Paper doc/folder.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperContentRenameType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperContentRestoreDetails
-
Restored archived Paper doc/folder.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperContentRestoreType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDefaultFolderPolicy
-
Policy to set default access for newly created Paper folders.
Type:
- Object
Properties:
Name Type Description .tag'everyone_in_team' | 'invite_only' | 'other' Tag identifying the union variant. -
TeamLogPaperDefaultFolderPolicyChangedDetails
-
Changed Paper Default Folder Policy setting for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogPaperDefaultFolderPolicy New Paper Default Folder Policy. previous_valueTeamLogPaperDefaultFolderPolicy Previous Paper Default Folder Policy. -
TeamLogPaperDefaultFolderPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDesktopPolicy
-
Policy for controlling if team members can use Paper Desktop
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogPaperDesktopPolicyChangedDetails
-
Enabled/disabled Paper Desktop for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogPaperDesktopPolicy New Paper Desktop policy. previous_valueTeamLogPaperDesktopPolicy Previous Paper Desktop policy. -
TeamLogPaperDesktopPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocAddCommentDetails
-
Added Paper doc comment.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. comment_textstring <optional>
Comment text. -
TeamLogPaperDocAddCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocChangeMemberRoleDetails
-
Changed member permissions for Paper doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. access_typeTeamLogPaperAccessType Paper doc access type. -
TeamLogPaperDocChangeMemberRoleType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocChangeSharingPolicyDetails
-
Changed sharing setting for Paper doc.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. public_sharing_policystring <optional>
Sharing policy with external users. team_sharing_policystring <optional>
Sharing policy with team. -
TeamLogPaperDocChangeSharingPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocChangeSubscriptionDetails
-
Followed/unfollowed Paper doc.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. new_subscription_levelstring New doc subscription level. previous_subscription_levelstring <optional>
Previous doc subscription level. Might be missing due to historical data gap. -
TeamLogPaperDocChangeSubscriptionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocDeleteCommentDetails
-
Deleted Paper doc comment.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. comment_textstring <optional>
Comment text. -
TeamLogPaperDocDeleteCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocDeletedDetails
-
Archived Paper doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperDocDeletedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocDownloadDetails
-
Downloaded Paper doc in specific format.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. export_file_formatTeamLogPaperDownloadFormat Export file format. -
TeamLogPaperDocDownloadType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocEditCommentDetails
-
Edited Paper doc comment.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. comment_textstring <optional>
Comment text. -
TeamLogPaperDocEditCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocEditDetails
-
Edited Paper doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperDocEditType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocFollowedDetails
-
Followed Paper doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperDocFollowedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocMentionDetails
-
Mentioned user in Paper doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperDocMentionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocOwnershipChangedDetails
-
Transferred ownership of Paper doc.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. new_owner_user_idstring New owner. old_owner_user_idstring <optional>
Previous owner. -
TeamLogPaperDocOwnershipChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocRequestAccessDetails
-
Requested access to Paper doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperDocRequestAccessType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocResolveCommentDetails
-
Resolved Paper doc comment.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. comment_textstring <optional>
Comment text. -
TeamLogPaperDocResolveCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocRevertDetails
-
Restored Paper doc to previous version.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperDocRevertType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Shared Paper doc via Slack.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocTeamInviteDetails
-
Shared Paper doc with users and/or groups.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperDocTeamInviteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocTrashedDetails
-
Deleted Paper doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperDocTrashedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocumentLogInfo
-
Paper document's logged information.
Type:
- Object
Properties:
Name Type Description doc_idstring Papers document Id. doc_titlestring Paper document title. -
TeamLogPaperDocUnresolveCommentDetails
-
Unresolved Paper doc comment.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. comment_textstring <optional>
Comment text. -
TeamLogPaperDocUnresolveCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocUntrashedDetails
-
Restored Paper doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperDocUntrashedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDocViewDetails
-
Viewed Paper doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperDocViewType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperDownloadFormat
-
Type:
- Object
Properties:
Name Type Description .tag'docx' | 'html' | 'markdown' | 'pdf' | 'other' Tag identifying the union variant. -
TeamLogPaperEnabledUsersGroupAdditionDetails
-
Added users to Paper-enabled users list.
Type:
- Object
-
TeamLogPaperEnabledUsersGroupAdditionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperEnabledUsersGroupRemovalDetails
-
Removed users from Paper-enabled users list.
Type:
- Object
-
TeamLogPaperEnabledUsersGroupRemovalType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperExternalViewAllowDetails
-
Changed Paper external sharing setting to anyone.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperExternalViewAllowType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperExternalViewDefaultTeamDetails
-
Changed Paper external sharing setting to default team.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperExternalViewDefaultTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperExternalViewForbidDetails
-
Changed Paper external sharing setting to team-only.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperExternalViewForbidType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperFolderChangeSubscriptionDetails
-
Followed/unfollowed Paper folder.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. new_subscription_levelstring New folder subscription level. previous_subscription_levelstring <optional>
Previous folder subscription level. Might be missing due to historical data gap. -
TeamLogPaperFolderChangeSubscriptionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperFolderDeletedDetails
-
Archived Paper folder.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperFolderDeletedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperFolderFollowedDetails
-
Followed Paper folder.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperFolderFollowedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperFolderLogInfo
-
Paper folder's logged information.
Type:
- Object
Properties:
Name Type Description folder_idstring Papers folder Id. folder_namestring Paper folder name. -
TeamLogPaperFolderTeamInviteDetails
-
Shared Paper folder with users and/or groups.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperFolderTeamInviteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperMemberPolicy
-
Policy for controlling if team members can share Paper documents externally.
Type:
- Object
Properties:
Name Type Description .tag'anyone_with_link' | 'only_team' | 'team_and_explicitly_shared' | 'other' Tag identifying the union variant. -
TeamLogPaperPublishedLinkChangePermissionDetails
-
Changed permissions for published doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. new_permission_levelstring New permission level. previous_permission_levelstring Previous permission level. -
TeamLogPaperPublishedLinkChangePermissionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperPublishedLinkCreateDetails
-
Published doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperPublishedLinkCreateType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperPublishedLinkDisabledDetails
-
Unpublished doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperPublishedLinkDisabledType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPaperPublishedLinkViewDetails
-
Viewed published doc.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogPaperPublishedLinkViewType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogParticipantLogInfo
-
A user or group
Type:
- Object
Properties:
Name Type Argument Description groupTeamLogGroupLogInfo <optional>
Available if .tag is group. Group details. userTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
Available if .tag is user. A user with a Dropbox account. .tag'group' | 'user' | 'other' Tag identifying the union variant. -
TeamLogPassPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'allow' | 'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogPasswordChangeDetails
-
Changed password.
Type:
- Object
-
TeamLogPasswordChangeType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPasswordResetAllDetails
-
Reset all team member passwords.
Type:
- Object
-
TeamLogPasswordResetAllType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPasswordResetDetails
-
Reset password.
Type:
- Object
-
TeamLogPasswordResetType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPasswordStrengthRequirementsChangePolicyDetails
-
Changed team password strength requirements.
Type:
- Object
Properties:
Name Type Description previous_valueTeamPoliciesPasswordStrengthPolicy Old password strength policy. new_valueTeamPoliciesPasswordStrengthPolicy New password strength policy. -
TeamLogPasswordStrengthRequirementsChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPathLogInfo
-
Path's details.
Type:
- Object
Properties:
Name Type Argument Description namespace_relativeTeamLogNamespaceRelativePathLogInfo Path relative to the namespace containing the content. contextualstring <optional>
Fully qualified path relative to event's context. -
TeamLogPendingSecondaryEmailAddedDetails
-
Added pending secondary email.
Type:
- Object
Properties:
Name Type Description secondary_emailstring New pending secondary email. -
TeamLogPendingSecondaryEmailAddedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPermanentDeleteChangePolicyDetails
-
Enabled/disabled ability of team members to permanently delete content.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogContentPermanentDeletePolicy New permanent delete content policy. previous_valueTeamLogContentPermanentDeletePolicy <optional>
Previous permanent delete content policy. Might be missing due to historical data gap. -
TeamLogPermanentDeleteChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogPlacementRestriction
-
Type:
- Object
Properties:
Name Type Description .tag'australia_only' | 'europe_only' | 'japan_only' | 'none' | 'uk_only' | 'us_s3_only' | 'other' Tag identifying the union variant. -
TeamLogPolicyType
-
Type:
- Object
Properties:
Name Type Description .tag'disposition' | 'retention' | 'other' Tag identifying the union variant. -
TeamLogPrimaryTeamRequestAcceptedDetails
-
Team merge request acceptance details shown to the primary team
Type:
- Object
Properties:
Name Type Description secondary_teamstring The secondary team name. sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogPrimaryTeamRequestCanceledDetails
-
Team merge request cancellation details shown to the primary team
Type:
- Object
Properties:
Name Type Description secondary_teamstring The secondary team name. sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogPrimaryTeamRequestExpiredDetails
-
Team merge request expiration details shown to the primary team
Type:
- Object
Properties:
Name Type Description secondary_teamstring The secondary team name. sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogPrimaryTeamRequestReminderDetails
-
Team merge request reminder details shown to the primary team
Type:
- Object
Properties:
Name Type Description secondary_teamstring The secondary team name. sent_tostring The name of the primary team admin the request was sent to. -
TeamLogQuickActionType
-
Quick action type.
Type:
- Object
Properties:
Name Type Description .tag'delete_shared_link' | 'reset_password' | 'restore_file_or_folder' | 'unlink_app' | 'unlink_device' | 'unlink_session' | 'other' Tag identifying the union variant. -
TeamLogRecipientsConfiguration
-
Recipients Configuration
Type:
- Object
Properties:
Name Type Argument Description recipient_setting_typeTeamLogAlertRecipientsSettingType <optional>
Recipients setting type. emailsArray.<Object> <optional>
A list of user emails to notify. groupsArray.<string> <optional>
A list of groups to notify. -
TeamLogRelocateAssetReferencesLogInfo
-
Provides the indices of the source asset and the destination asset for a relocate action.
Type:
- Object
Properties:
Name Type Description src_asset_indexnumber Source asset position in the Assets list. dest_asset_indexnumber Destination asset position in the Assets list. -
TeamLogResellerLogInfo
-
Reseller information.
Type:
- Object
Properties:
Name Type Description reseller_namestring Reseller name. reseller_emailstring Reseller email. -
TeamLogResellerRole
-
Type:
- Object
Properties:
Name Type Description .tag'not_reseller' | 'reseller_admin' | 'other' Tag identifying the union variant. -
TeamLogResellerSupportChangePolicyDetails
-
Enabled/disabled reseller support.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogResellerSupportPolicy New Reseller support policy. previous_valueTeamLogResellerSupportPolicy Previous Reseller support policy. -
TeamLogResellerSupportChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogResellerSupportPolicy
-
Policy for controlling if reseller can access the admin console as administrator
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogResellerSupportSessionEndDetails
-
Ended reseller support session.
Type:
- Object
-
TeamLogResellerSupportSessionEndType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogResellerSupportSessionStartDetails
-
Started reseller support session.
Type:
- Object
-
TeamLogResellerSupportSessionStartType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogRewindFolderDetails
-
Rewound a folder.
Type:
- Object
Properties:
Name Type Description rewind_folder_target_ts_msTimestamp Folder was Rewound to this date. -
TeamLogRewindFolderType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogRewindPolicy
-
Policy for controlling whether team members can rewind
Type:
- Object
Properties:
Name Type Description .tag'admins_only' | 'everyone' | 'other' Tag identifying the union variant. -
TeamLogRewindPolicyChangedDetails
-
Changed Rewind policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogRewindPolicy New Dropbox Rewind policy. previous_valueTeamLogRewindPolicy Previous Dropbox Rewind policy. -
TeamLogRewindPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSecondaryEmailDeletedDetails
-
Deleted secondary email.
Type:
- Object
Properties:
Name Type Description secondary_emailstring Deleted secondary email. -
TeamLogSecondaryEmailDeletedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSecondaryEmailVerifiedDetails
-
Verified secondary email.
Type:
- Object
Properties:
Name Type Description secondary_emailstring Verified secondary email. -
TeamLogSecondaryEmailVerifiedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSecondaryMailsPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogSecondaryMailsPolicyChangedDetails
-
Secondary mails policy changed.
Type:
- Object
Properties:
Name Type Description previous_valueTeamLogSecondaryMailsPolicy Previous secondary mails policy. new_valueTeamLogSecondaryMailsPolicy New secondary mails policy. -
TeamLogSecondaryMailsPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSecondaryTeamRequestAcceptedDetails
-
Team merge request acceptance details shown to the secondary team
Type:
- Object
Properties:
Name Type Description primary_teamstring The primary team name. sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogSecondaryTeamRequestCanceledDetails
-
Team merge request cancellation details shown to the secondary team
Type:
- Object
Properties:
Name Type Description sent_tostring The email of the primary team admin that the request was sent to. sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogSecondaryTeamRequestExpiredDetails
-
Team merge request expiration details shown to the secondary team
Type:
- Object
Properties:
Name Type Description sent_tostring The email of the primary team admin the request was sent to. -
TeamLogSecondaryTeamRequestReminderDetails
-
Team merge request reminder details shown to the secondary team
Type:
- Object
Properties:
Name Type Description sent_tostring The email of the primary team admin the request was sent to. -
TeamLogSendForSignaturePolicy
-
Policy for controlling team access to send for signature feature
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogSendForSignaturePolicyChangedDetails
-
Changed send for signature policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogSendForSignaturePolicy New send for signature policy. previous_valueTeamLogSendForSignaturePolicy Previous send for signature policy. -
TeamLogSendForSignaturePolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSessionLogInfo
-
Session's logged information.
Type:
- Object
Properties:
Name Type Argument Description .tag"web" | "desktop" | "mobile" Tag identifying the subtype variant. session_idstring <optional>
Session ID. -
TeamLogSfAddGroupDetails
-
Added team to shared folder.
Type:
- Object
Properties:
Name Type Argument Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. team_namestring Team name. sharing_permissionstring <optional>
Sharing permission. -
TeamLogSfAddGroupType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Allowed non-collaborators to view links to files in shared folder.
Type:
- Object
Properties:
Name Type Argument Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. shared_folder_typestring <optional>
Shared folder type. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSfExternalInviteWarnDetails
-
Set team members to see warning before sharing folders outside team.
Type:
- Object
Properties:
Name Type Argument Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. new_sharing_permissionstring <optional>
New sharing permission. previous_sharing_permissionstring <optional>
Previous sharing permission. -
TeamLogSfExternalInviteWarnType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSfFbInviteChangeRoleDetails
-
Changed Facebook user's role in shared folder.
Type:
- Object
Properties:
Name Type Argument Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. previous_sharing_permissionstring <optional>
Previous sharing permission. new_sharing_permissionstring <optional>
New sharing permission. -
TeamLogSfFbInviteChangeRoleType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSfFbInviteDetails
-
Invited Facebook users to shared folder.
Type:
- Object
Properties:
Name Type Argument Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. sharing_permissionstring <optional>
Sharing permission. -
TeamLogSfFbInviteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSfFbUninviteDetails
-
Uninvited Facebook user from shared folder.
Type:
- Object
Properties:
Name Type Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. -
TeamLogSfFbUninviteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSfInviteGroupDetails
-
Invited group to shared folder.
Type:
- Object
Properties:
Name Type Description target_asset_indexnumber Target asset position in the Assets list. -
TeamLogSfInviteGroupType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSfTeamGrantAccessDetails
-
Granted access to shared folder.
Type:
- Object
Properties:
Name Type Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. -
TeamLogSfTeamGrantAccessType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSfTeamInviteChangeRoleDetails
-
Changed team member's role in shared folder.
Type:
- Object
Properties:
Name Type Argument Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. new_sharing_permissionstring <optional>
New sharing permission. previous_sharing_permissionstring <optional>
Previous sharing permission. -
TeamLogSfTeamInviteChangeRoleType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSfTeamInviteDetails
-
Invited team members to shared folder.
Type:
- Object
Properties:
Name Type Argument Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. sharing_permissionstring <optional>
Sharing permission. -
TeamLogSfTeamInviteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSfTeamJoinDetails
-
Joined team member's shared folder.
Type:
- Object
Properties:
Name Type Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. -
TeamLogSfTeamJoinFromOobLinkDetails
-
Joined team member's shared folder from link.
Type:
- Object
Properties:
Name Type Argument Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. token_keystring <optional>
Shared link token key. sharing_permissionstring <optional>
Sharing permission. -
TeamLogSfTeamJoinFromOobLinkType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSfTeamJoinType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSfTeamUninviteDetails
-
Unshared folder with team member.
Type:
- Object
Properties:
Name Type Description target_asset_indexnumber Target asset position in the Assets list. original_folder_namestring Original shared folder name. -
TeamLogSfTeamUninviteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Invited user to Dropbox and added them to shared file/folder.
Type:
- Object
Properties:
Name Type Description shared_content_access_levelSharingAccessLevel Shared content access level. inviteesArray.<Object> A list of invitees. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Added expiration date to link for shared file/folder.
Type:
- Object
Properties:
Name Type Argument Description new_valueTimestamp <optional>
New shared content link expiration date. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Added password to link for shared file/folder.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Added users and/or groups to shared file/folder.
Type:
- Object
Properties:
Name Type Description shared_content_access_levelSharingAccessLevel Shared content access level. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed whether members can download shared file/folder.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogDownloadPolicyType New downloads policy. previous_valueTeamLogDownloadPolicyType <optional>
Previous downloads policy. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed access type of invitee to shared file/folder before invite was accepted.
Type:
- Object
Properties:
Name Type Argument Description new_access_levelSharingAccessLevel New access level. inviteestring The invitee whose role was changed. previous_access_levelSharingAccessLevel <optional>
Previous access level. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed link audience of shared file/folder.
Type:
- Object
Properties:
Name Type Argument Description new_valueSharingLinkAudience New link audience value. previous_valueSharingLinkAudience <optional>
Previous link audience value. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed link expiration of shared file/folder.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed link password of shared file/folder.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed access type of shared file/folder member.
Type:
- Object
Properties:
Name Type Argument Description new_access_levelSharingAccessLevel New access level. previous_access_levelSharingAccessLevel <optional>
Previous access level. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed whether members can see who viewed shared file/folder.
Type:
- Object
Properties:
Name Type Argument Description new_valueSharingViewerInfoPolicy New viewer info policy. previous_valueSharingViewerInfoPolicy <optional>
Previous view info policy. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Acquired membership of shared file/folder by accepting invite.
Type:
- Object
Properties:
Name Type Argument Description shared_content_linkstring <optional>
Shared content link. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Copied shared file/folder to own Dropbox.
Type:
- Object
Properties:
Name Type Argument Description shared_content_linkstring Shared content link. shared_content_access_levelSharingAccessLevel Shared content access level. destination_pathstring The path where the member saved the content. shared_content_ownerTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
The shared content owner. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Downloaded shared file/folder.
Type:
- Object
Properties:
Name Type Argument Description shared_content_linkstring Shared content link. shared_content_access_levelSharingAccessLevel Shared content access level. shared_content_ownerTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
The shared content owner. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Left shared file/folder.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Removed invitee from shared file/folder before invite was accepted.
Type:
- Object
Properties:
Name Type Description inviteesArray.<Object> A list of invitees. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Removed link expiration date of shared file/folder.
Type:
- Object
Properties:
Name Type Argument Description previous_valueTimestamp <optional>
Previous shared content link expiration date. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Removed link password of shared file/folder.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Removed user/group from shared file/folder.
Type:
- Object
Properties:
Name Type Argument Description shared_content_access_levelSharingAccessLevel <optional>
Shared content access level. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Requested access to shared file/folder.
Type:
- Object
Properties:
Name Type Argument Description shared_content_linkstring <optional>
Shared content link. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Restored shared file/folder invitees.
Type:
- Object
Properties:
Name Type Description shared_content_access_levelSharingAccessLevel Shared content access level. inviteesArray.<Object> A list of invitees. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Restored users and/or groups to membership of shared file/folder.
Type:
- Object
Properties:
Name Type Description shared_content_access_levelSharingAccessLevel Shared content access level. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Unshared file/folder by clearing membership.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Previewed shared file/folder.
Type:
- Object
Properties:
Name Type Argument Description shared_content_linkstring Shared content link. shared_content_access_levelSharingAccessLevel Shared content access level. shared_content_ownerTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
The shared content owner. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed who can access shared folder via link.
Type:
- Object
Properties:
Name Type Argument Description new_valueSharingSharedLinkPolicy New shared folder link policy. previous_valueSharingSharedLinkPolicy <optional>
Previous shared folder link policy. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed whether shared folder inherits members from parent folder.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogSharedFolderMembersInheritancePolicy New member inheritance policy. previous_valueTeamLogSharedFolderMembersInheritancePolicy <optional>
Previous member inheritance policy. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed who can add/remove members of shared folder.
Type:
- Object
Properties:
Name Type Argument Description new_valueSharingAclUpdatePolicy New members management policy. previous_valueSharingAclUpdatePolicy <optional>
Previous members management policy. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed who can become member of shared folder.
Type:
- Object
Properties:
Name Type Argument Description new_valueSharingMemberPolicy New external invite policy. previous_valueSharingMemberPolicy <optional>
Previous external invite policy. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Created shared folder.
Type:
- Object
Properties:
Name Type Argument Description target_ns_idstring <optional>
Target namespace ID. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Declined team member's invite to shared folder.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Specifies if a shared folder inherits its members from the parent folder.
Type:
- Object
Properties:
Name Type Description .tag'dont_inherit_members' | 'inherit_members' | 'other' Tag identifying the union variant. -
Added shared folder to own Dropbox.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed parent of shared folder.
Type:
- Object
Properties:
Name Type Argument Description previous_parent_ns_idstring <optional>
Previous parent namespace ID. new_parent_ns_idstring <optional>
New parent namespace ID. previous_ns_pathstring <optional>
Previous namespace path. new_ns_pathstring <optional>
New namespace path. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Transferred ownership of shared folder to another member.
Type:
- Object
Properties:
Name Type Argument Description new_owner_emailstring The email address of the new shared folder owner. previous_owner_emailstring <optional>
The email address of the previous shared folder owner. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Deleted shared folder from Dropbox.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Shared link access level.
Type:
- Object
Properties:
Name Type Description .tag'none' | 'reader' | 'writer' | 'other' Tag identifying the union variant. -
Added shared link expiration date.
Type:
- Object
Properties:
Name Type Description new_valueTimestamp New shared link expiration date. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed shared link expiration date.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed visibility of shared link.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogSharedLinkVisibility New shared link visibility. previous_valueTeamLogSharedLinkVisibility <optional>
Previous shared link visibility. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Added file/folder to Dropbox from shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_link_ownerTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
Shared link owner details. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Created shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_link_access_levelTeamLogSharedLinkAccessLevel <optional>
Defines who can access the shared link. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Removed shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_link_ownerTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
Shared link owner details. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Downloaded file/folder from shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_link_ownerTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
Shared link owner details. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Removed shared link expiration date.
Type:
- Object
Properties:
Name Type Argument Description previous_valueTimestamp <optional>
Previous shared link expiration date. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Added an expiration date to the shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_content_access_levelSharingAccessLevel Shared content access level. shared_content_linkstring <optional>
Shared content link. new_valueTimestamp <optional>
New shared content link expiration date. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Added a password to the shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_content_access_levelSharingAccessLevel Shared content access level. shared_content_linkstring <optional>
Shared content link. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Disabled downloads.
Type:
- Object
Properties:
Name Type Argument Description shared_content_access_levelSharingAccessLevel Shared content access level. shared_content_linkstring <optional>
Shared content link. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Enabled downloads.
Type:
- Object
Properties:
Name Type Argument Description shared_content_access_levelSharingAccessLevel Shared content access level. shared_content_linkstring <optional>
Shared content link. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed the audience of the shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_content_access_levelSharingAccessLevel Shared content access level. new_valueSharingLinkAudience New link audience value. shared_content_linkstring <optional>
Shared content link. previous_valueSharingLinkAudience <optional>
Previous link audience value. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed the expiration date of the shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_content_access_levelSharingAccessLevel Shared content access level. shared_content_linkstring <optional>
Shared content link. new_valueTimestamp <optional>
New shared content link expiration date. Might be missing due to historical data gap. previous_valueTimestamp <optional>
Previous shared content link expiration date. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Changed the password of the shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_content_access_levelSharingAccessLevel Shared content access level. shared_content_linkstring <optional>
Shared content link. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Removed the expiration date from the shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_content_access_levelSharingAccessLevel Shared content access level. shared_content_linkstring <optional>
Shared content link. previous_valueTimestamp <optional>
Previous shared link expiration date. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Removed the password from the shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_content_access_levelSharingAccessLevel Shared content access level. shared_content_linkstring <optional>
Shared content link. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Added members as audience of shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_link_ownerTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
Shared link owner details. Might be missing due to historical data gap. external_usersArray.<TeamLogExternalUserLogInfo> <optional>
Users without a Dropbox account that were added as shared link audience. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Opened shared link.
Type:
- Object
Properties:
Name Type Argument Description shared_link_ownerTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
Shared link owner details. Might be missing due to historical data gap. -
Type:
- Object
Properties:
Name Type Description descriptionstring -
Defines who has access to a shared link.
Type:
- Object
Properties:
Name Type Description .tag'no_one' | 'password' | 'public' | 'team_only' | 'other' Tag identifying the union variant. -
Opened shared Paper doc.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSharingChangeFolderJoinPolicyDetails
-
Changed whether team members can join shared folders owned outside team.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogSharingFolderJoinPolicy New external join policy. previous_valueTeamLogSharingFolderJoinPolicy <optional>
Previous external join policy. Might be missing due to historical data gap. -
TeamLogSharingChangeFolderJoinPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSharingChangeLinkAllowChangeExpirationPolicyDetails
-
Changed the allow remove or change expiration policy for the links shared outside of the team.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogEnforceLinkPasswordPolicy To. previous_valueTeamLogEnforceLinkPasswordPolicy <optional>
From. -
TeamLogSharingChangeLinkAllowChangeExpirationPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSharingChangeLinkDefaultExpirationPolicyDetails
-
Changed the default expiration for the links shared outside of the team.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogDefaultLinkExpirationDaysPolicy To. previous_valueTeamLogDefaultLinkExpirationDaysPolicy <optional>
From. -
TeamLogSharingChangeLinkDefaultExpirationPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSharingChangeLinkEnforcePasswordPolicyDetails
-
Changed the password requirement for the links shared outside of the team.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogChangeLinkExpirationPolicy To. previous_valueTeamLogChangeLinkExpirationPolicy <optional>
From. -
TeamLogSharingChangeLinkEnforcePasswordPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSharingChangeLinkPolicyDetails
-
Changed whether members can share links outside team, and if links are accessible only by team members or anyone by default.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogSharingLinkPolicy New external link accessibility policy. previous_valueTeamLogSharingLinkPolicy <optional>
Previous external link accessibility policy. Might be missing due to historical data gap. -
TeamLogSharingChangeLinkPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSharingChangeMemberPolicyDetails
-
Changed whether members can share files/folders outside team.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogSharingMemberPolicy New external invite policy. previous_valueTeamLogSharingMemberPolicy <optional>
Previous external invite policy. Might be missing due to historical data gap. -
TeamLogSharingChangeMemberPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSharingFolderJoinPolicy
-
Policy for controlling if team members can join shared folders owned by non team members.
Type:
- Object
Properties:
Name Type Description .tag'from_anyone' | 'from_team_only' | 'other' Tag identifying the union variant. -
TeamLogSharingLinkPolicy
-
Policy for controlling if team members can share links externally
Type:
- Object
Properties:
Name Type Description .tag'default_no_one' | 'default_private' | 'default_public' | 'only_private' | 'other' Tag identifying the union variant. -
TeamLogSharingMemberPolicy
-
External sharing policy
Type:
- Object
Properties:
Name Type Description .tag'allow' | 'forbid' | 'forbid_with_exclusions' | 'other' Tag identifying the union variant. -
TeamLogShmodelDisableDownloadsDetails
-
Disabled downloads for link.
Type:
- Object
Properties:
Name Type Argument Description shared_link_ownerTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
Shared link owner details. Might be missing due to historical data gap. -
TeamLogShmodelDisableDownloadsType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShmodelEnableDownloadsDetails
-
Enabled downloads for link.
Type:
- Object
Properties:
Name Type Argument Description shared_link_ownerTeamLogTeamMemberLogInfo | TeamLogTrustedNonTeamMemberLogInfo | TeamLogNonTeamMemberLogInfo | TeamLogUserLogInfo <optional>
Shared link owner details. Might be missing due to historical data gap. -
TeamLogShmodelEnableDownloadsType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
Shared link with group.
Type:
- Object
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseAccessGrantedDetails
-
Granted access to showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseAccessGrantedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseAddMemberDetails
-
Added member to showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseAddMemberType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseArchivedDetails
-
Archived showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseArchivedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseChangeDownloadPolicyDetails
-
Enabled/disabled downloading files from Dropbox Showcase for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogShowcaseDownloadPolicy New Dropbox Showcase download policy. previous_valueTeamLogShowcaseDownloadPolicy Previous Dropbox Showcase download policy. -
TeamLogShowcaseChangeDownloadPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseChangeEnabledPolicyDetails
-
Enabled/disabled Dropbox Showcase for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogShowcaseEnabledPolicy New Dropbox Showcase policy. previous_valueTeamLogShowcaseEnabledPolicy Previous Dropbox Showcase policy. -
TeamLogShowcaseChangeEnabledPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseChangeExternalSharingPolicyDetails
-
Enabled/disabled sharing Dropbox Showcase externally for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogShowcaseExternalSharingPolicy New Dropbox Showcase external sharing policy. previous_valueTeamLogShowcaseExternalSharingPolicy Previous Dropbox Showcase external sharing policy. -
TeamLogShowcaseChangeExternalSharingPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseCreatedDetails
-
Created showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseCreatedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseDeleteCommentDetails
-
Deleted showcase comment.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. comment_textstring <optional>
Comment text. -
TeamLogShowcaseDeleteCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseDocumentLogInfo
-
Showcase document's logged information.
Type:
- Object
Properties:
Name Type Description showcase_idstring Showcase document Id. showcase_titlestring Showcase document title. -
TeamLogShowcaseDownloadPolicy
-
Policy for controlling if files can be downloaded from Showcases by team members
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogShowcaseEditCommentDetails
-
Edited showcase comment.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. comment_textstring <optional>
Comment text. -
TeamLogShowcaseEditCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseEditedDetails
-
Edited showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseEditedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseEnabledPolicy
-
Policy for controlling whether Showcase is enabled.
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogShowcaseExternalSharingPolicy
-
Policy for controlling if team members can share Showcases externally.
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogShowcaseFileAddedDetails
-
Added file to showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseFileAddedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseFileDownloadDetails
-
Downloaded file from showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. download_typestring Showcase download type. -
TeamLogShowcaseFileDownloadType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseFileRemovedDetails
-
Removed file from showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseFileRemovedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseFileViewDetails
-
Viewed file in showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseFileViewType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcasePermanentlyDeletedDetails
-
Permanently deleted showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcasePermanentlyDeletedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcasePostCommentDetails
-
Added showcase comment.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. comment_textstring <optional>
Comment text. -
TeamLogShowcasePostCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseRemoveMemberDetails
-
Removed member from showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseRemoveMemberType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseRenamedDetails
-
Renamed showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseRenamedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseRequestAccessDetails
-
Requested access to showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseRequestAccessType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseResolveCommentDetails
-
Resolved showcase comment.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. comment_textstring <optional>
Comment text. -
TeamLogShowcaseResolveCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseRestoredDetails
-
Unarchived showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseRestoredType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseTrashedDeprecatedDetails
-
Deleted showcase (old version).
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseTrashedDeprecatedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseTrashedDetails
-
Deleted showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseTrashedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseUnresolveCommentDetails
-
Unresolved showcase comment.
Type:
- Object
Properties:
Name Type Argument Description event_uuidstring Event unique identifier. comment_textstring <optional>
Comment text. -
TeamLogShowcaseUnresolveCommentType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseUntrashedDeprecatedDetails
-
Restored showcase (old version).
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseUntrashedDeprecatedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseUntrashedDetails
-
Restored showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseUntrashedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogShowcaseViewDetails
-
Viewed showcase.
Type:
- Object
Properties:
Name Type Description event_uuidstring Event unique identifier. -
TeamLogShowcaseViewType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSignInAsSessionEndDetails
-
Ended admin sign-in-as session.
Type:
- Object
-
TeamLogSignInAsSessionEndType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSignInAsSessionStartDetails
-
Started admin sign-in-as session.
Type:
- Object
-
TeamLogSignInAsSessionStartType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSmarterSmartSyncPolicyChangedDetails
-
Changed automatic Smart Sync setting for team.
Type:
- Object
Properties:
Name Type Description previous_valueTeamPoliciesSmarterSmartSyncPolicyState Previous automatic Smart Sync setting. new_valueTeamPoliciesSmarterSmartSyncPolicyState New automatic Smart Sync setting. -
TeamLogSmarterSmartSyncPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSmartSyncChangePolicyDetails
-
Changed default Smart Sync setting for team members.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamPoliciesSmartSyncPolicy <optional>
New smart sync policy. previous_valueTeamPoliciesSmartSyncPolicy <optional>
Previous smart sync policy. -
TeamLogSmartSyncChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSmartSyncCreateAdminPrivilegeReportDetails
-
Created Smart Sync non-admin devices report.
Type:
- Object
-
TeamLogSmartSyncCreateAdminPrivilegeReportType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSmartSyncNotOptOutDetails
-
Opted team into Smart Sync.
Type:
- Object
Properties:
Name Type Description previous_valueTeamLogSmartSyncOptOutPolicy Previous Smart Sync opt out policy. new_valueTeamLogSmartSyncOptOutPolicy New Smart Sync opt out policy. -
TeamLogSmartSyncNotOptOutType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSmartSyncOptOutDetails
-
Opted team out of Smart Sync.
Type:
- Object
Properties:
Name Type Description previous_valueTeamLogSmartSyncOptOutPolicy Previous Smart Sync opt out policy. new_valueTeamLogSmartSyncOptOutPolicy New Smart Sync opt out policy. -
TeamLogSmartSyncOptOutPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'default' | 'opted_out' | 'other' Tag identifying the union variant. -
TeamLogSmartSyncOptOutType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSpaceCapsType
-
Space limit alert policy
Type:
- Object
Properties:
Name Type Description .tag'hard' | 'off' | 'soft' | 'other' Tag identifying the union variant. -
TeamLogSpaceLimitsStatus
-
Type:
- Object
Properties:
Name Type Description .tag'near_quota' | 'over_quota' | 'within_quota' | 'other' Tag identifying the union variant. -
TeamLogSsoAddCertDetails
-
Added X.509 certificate for SSO.
Type:
- Object
Properties:
Name Type Description certificate_detailsTeamLogCertificate SSO certificate details. -
TeamLogSsoAddCertType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSsoAddLoginUrlDetails
-
Added sign-in URL for SSO.
Type:
- Object
Properties:
Name Type Description new_valuestring New single sign-on login URL. -
TeamLogSsoAddLoginUrlType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSsoAddLogoutUrlDetails
-
Added sign-out URL for SSO.
Type:
- Object
Properties:
Name Type Argument Description new_valuestring <optional>
New single sign-on logout URL. -
TeamLogSsoAddLogoutUrlType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSsoChangeCertDetails
-
Changed X.509 certificate for SSO.
Type:
- Object
Properties:
Name Type Argument Description new_certificate_detailsTeamLogCertificate New SSO certificate details. previous_certificate_detailsTeamLogCertificate <optional>
Previous SSO certificate details. Might be missing due to historical data gap. -
TeamLogSsoChangeCertType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSsoChangeLoginUrlDetails
-
Changed sign-in URL for SSO.
Type:
- Object
Properties:
Name Type Description previous_valuestring Previous single sign-on login URL. new_valuestring New single sign-on login URL. -
TeamLogSsoChangeLoginUrlType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSsoChangeLogoutUrlDetails
-
Changed sign-out URL for SSO.
Type:
- Object
Properties:
Name Type Argument Description previous_valuestring <optional>
Previous single sign-on logout URL. Might be missing due to historical data gap. new_valuestring <optional>
New single sign-on logout URL. -
TeamLogSsoChangeLogoutUrlType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSsoChangePolicyDetails
-
Changed single sign-on setting for team.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamPoliciesSsoPolicy New single sign-on policy. previous_valueTeamPoliciesSsoPolicy <optional>
Previous single sign-on policy. Might be missing due to historical data gap. -
TeamLogSsoChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSsoChangeSamlIdentityModeDetails
-
Changed SAML identity mode for SSO.
Type:
- Object
Properties:
Name Type Description previous_valuenumber Previous single sign-on identity mode. new_valuenumber New single sign-on identity mode. -
TeamLogSsoChangeSamlIdentityModeType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSsoErrorDetails
-
Failed to sign in via SSO.
Type:
- Object
Properties:
Name Type Description error_detailsTeamLogFailureDetailsLogInfo Error details. -
TeamLogSsoErrorType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSsoRemoveCertDetails
-
Removed X.509 certificate for SSO.
Type:
- Object
-
TeamLogSsoRemoveCertType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSsoRemoveLoginUrlDetails
-
Removed sign-in URL for SSO.
Type:
- Object
Properties:
Name Type Description previous_valuestring Previous single sign-on login URL. -
TeamLogSsoRemoveLoginUrlType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogSsoRemoveLogoutUrlDetails
-
Removed sign-out URL for SSO.
Type:
- Object
Properties:
Name Type Description previous_valuestring Previous single sign-on logout URL. -
TeamLogSsoRemoveLogoutUrlType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogStartedEnterpriseAdminSessionDetails
-
Started enterprise admin session.
Type:
- Object
Properties:
Name Type Description federation_extra_detailsTeamLogFedExtraDetails More information about the organization or team. -
TeamLogStartedEnterpriseAdminSessionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamActivityCreateReportDetails
-
Created team activity report.
Type:
- Object
-
TeamLogTeamActivityCreateReportFailDetails
-
Couldn't generate team activity report.
Type:
- Object
Properties:
Name Type Description failure_reasonTeamTeamReportFailureReason Failure reason. -
TeamLogTeamActivityCreateReportFailType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamActivityCreateReportType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamBrandingPolicy
-
Policy for controlling team access to setting up branding feature
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogTeamBrandingPolicyChangedDetails
-
Changed team branding policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogTeamBrandingPolicy New team branding policy. previous_valueTeamLogTeamBrandingPolicy Previous team branding policy. -
TeamLogTeamBrandingPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamDetails
-
More details about the team.
Type:
- Object
Properties:
Name Type Description teamstring The name of the team. -
TeamLogTeamEvent
-
An audit log event.
Type:
- Object
Properties:
Name Type Argument Description timestampTimestamp The Dropbox timestamp representing when the action was taken. event_categoryTeamLogEventCategory The category that this type of action belongs to. event_typeTeamLogEventType The particular type of action taken. detailsTeamLogEventDetails The variable event schema applicable to this type of action, instantiated with respect to this particular action. actorTeamLogActorLogInfo <optional>
The entity who actually performed the action. Might be missing due to historical data gap. originTeamLogOriginLogInfo <optional>
The origin from which the actor performed the action including information about host, ip address, location, session, etc. If the action was performed programmatically via the API the origin represents the API client. involve_non_team_memberboolean <optional>
True if the action involved a non team member either as the actor or as one of the affected users. Might be missing due to historical data gap. contextTeamLogContextLogInfo <optional>
The user or team on whose behalf the actor performed the action. Might be missing due to historical data gap. participantsArray.<TeamLogParticipantLogInfo> <optional>
Zero or more users and/or groups that are affected by the action. Note that this list doesn't include any actors or users in context. assetsArray.<TeamLogAssetLogInfo> <optional>
Zero or more content assets involved in the action. Currently these include Dropbox files and folders but in the future we might add other asset types such as Paper documents, folders, projects, etc. -
TeamLogTeamExtensionsPolicy
-
Policy for controlling whether App Integrations are enabled for the team.
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogTeamExtensionsPolicyChangedDetails
-
Changed App Integrations setting for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogTeamExtensionsPolicy New Extensions policy. previous_valueTeamLogTeamExtensionsPolicy Previous Extensions policy. -
TeamLogTeamExtensionsPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamFolderChangeStatusDetails
-
Changed archival status of team folder.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamTeamFolderStatus New team folder status. previous_valueTeamTeamFolderStatus <optional>
Previous team folder status. Might be missing due to historical data gap. -
TeamLogTeamFolderChangeStatusType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamFolderCreateDetails
-
Created team folder in active status.
Type:
- Object
-
TeamLogTeamFolderCreateType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamFolderDowngradeDetails
-
Downgraded team folder to regular shared folder.
Type:
- Object
Properties:
Name Type Description target_asset_indexnumber Target asset position in the Assets list. -
TeamLogTeamFolderDowngradeType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamFolderPermanentlyDeleteDetails
-
Permanently deleted archived team folder.
Type:
- Object
-
TeamLogTeamFolderPermanentlyDeleteType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamFolderRenameDetails
-
Renamed active/archived team folder.
Type:
- Object
Properties:
Name Type Description previous_folder_namestring Previous folder name. new_folder_namestring New folder name. -
TeamLogTeamFolderRenameType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamInviteDetails
-
Details about team invites
Type:
- Object
Properties:
Name Type Argument Description invite_methodTeamLogInviteMethod How the user was invited to the team. additional_license_purchaseboolean <optional>
True if the invitation incurred an additional license purchase. -
TeamLogTeamLinkedAppLogInfo
-
Team linked app
Type:
- Object
Properties:
Name Type Argument Description .tag'team_linked_app' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. app_idstring <optional>
App unique ID. display_namestring <optional>
App display name. -
TeamLogTeamLogInfo
-
Team's logged information.
Type:
- Object
Properties:
Name Type Description display_namestring Team display name. -
TeamLogTeamMemberLogInfo
-
Team member's logged information.
Type:
- Object
Properties:
Name Type Argument Description .tag'team_member' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. account_idstring <optional>
User unique ID. display_namestring <optional>
User display name. emailstring <optional>
User email address. team_member_idstring <optional>
Team member ID. member_external_idstring <optional>
Team member external ID. teamTeamLogTeamLogInfo <optional>
Details about this user’s team for enterprise event. -
TeamLogTeamMembershipType
-
Type:
- Object
Properties:
Name Type Description .tag'free' | 'full' | 'guest' | 'other' Tag identifying the union variant. -
TeamLogTeamMergeFromDetails
-
Merged another team into this team.
Type:
- Object
Properties:
Name Type Description team_namestring The name of the team that was merged into this team. -
TeamLogTeamMergeFromType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestAcceptedDetails
-
Accepted a team merge request.
Type:
- Object
Properties:
Name Type Description request_accepted_detailsTeamLogTeamMergeRequestAcceptedExtraDetails Team merge request acceptance details. -
TeamLogTeamMergeRequestAcceptedExtraDetails
-
Team merge request acceptance details
Type:
- Object
Properties:
Name Type Argument Description primary_teamTeamLogPrimaryTeamRequestAcceptedDetails <optional>
Available if .tag is primary_team. Team merge request accepted details shown to the primary team. secondary_teamTeamLogSecondaryTeamRequestAcceptedDetails <optional>
Available if .tag is secondary_team. Team merge request accepted details shown to the secondary team. .tag'primary_team' | 'secondary_team' | 'other' Tag identifying the union variant. -
TeamLogTeamMergeRequestAcceptedShownToPrimaryTeamDetails
-
Accepted a team merge request.
Type:
- Object
Properties:
Name Type Description secondary_teamstring The secondary team name. sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogTeamMergeRequestAcceptedShownToPrimaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestAcceptedShownToSecondaryTeamDetails
-
Accepted a team merge request.
Type:
- Object
Properties:
Name Type Description primary_teamstring The primary team name. sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogTeamMergeRequestAcceptedShownToSecondaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestAcceptedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestAutoCanceledDetails
-
Automatically canceled team merge request.
Type:
- Object
Properties:
Name Type Argument Description detailsstring <optional>
The cancellation reason. -
TeamLogTeamMergeRequestAutoCanceledType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestCanceledDetails
-
Canceled a team merge request.
Type:
- Object
Properties:
Name Type Description request_canceled_detailsTeamLogTeamMergeRequestCanceledExtraDetails Team merge request cancellation details. -
TeamLogTeamMergeRequestCanceledExtraDetails
-
Team merge request cancellation details
Type:
- Object
Properties:
Name Type Argument Description primary_teamTeamLogPrimaryTeamRequestCanceledDetails <optional>
Available if .tag is primary_team. Team merge request cancellation details shown to the primary team. secondary_teamTeamLogSecondaryTeamRequestCanceledDetails <optional>
Available if .tag is secondary_team. Team merge request cancellation details shown to the secondary team. .tag'primary_team' | 'secondary_team' | 'other' Tag identifying the union variant. -
TeamLogTeamMergeRequestCanceledShownToPrimaryTeamDetails
-
Canceled a team merge request.
Type:
- Object
Properties:
Name Type Description secondary_teamstring The secondary team name. sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogTeamMergeRequestCanceledShownToPrimaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestCanceledShownToSecondaryTeamDetails
-
Canceled a team merge request.
Type:
- Object
Properties:
Name Type Description sent_tostring The email of the primary team admin that the request was sent to. sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogTeamMergeRequestCanceledShownToSecondaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestCanceledType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestExpiredDetails
-
Team merge request expired.
Type:
- Object
Properties:
Name Type Description request_expired_detailsTeamLogTeamMergeRequestExpiredExtraDetails Team merge request expiration details. -
TeamLogTeamMergeRequestExpiredExtraDetails
-
Team merge request expiration details
Type:
- Object
Properties:
Name Type Argument Description primary_teamTeamLogPrimaryTeamRequestExpiredDetails <optional>
Available if .tag is primary_team. Team merge request canceled details shown to the primary team. secondary_teamTeamLogSecondaryTeamRequestExpiredDetails <optional>
Available if .tag is secondary_team. Team merge request canceled details shown to the secondary team. .tag'primary_team' | 'secondary_team' | 'other' Tag identifying the union variant. -
TeamLogTeamMergeRequestExpiredShownToPrimaryTeamDetails
-
Team merge request expired.
Type:
- Object
Properties:
Name Type Description secondary_teamstring The secondary team name. sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogTeamMergeRequestExpiredShownToPrimaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestExpiredShownToSecondaryTeamDetails
-
Team merge request expired.
Type:
- Object
Properties:
Name Type Description sent_tostring The email of the primary team admin the request was sent to. -
TeamLogTeamMergeRequestExpiredShownToSecondaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestExpiredType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestRejectedShownToPrimaryTeamDetails
-
Rejected a team merge request.
Type:
- Object
Properties:
Name Type Description secondary_teamstring The secondary team name. sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogTeamMergeRequestRejectedShownToPrimaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestRejectedShownToSecondaryTeamDetails
-
Rejected a team merge request.
Type:
- Object
Properties:
Name Type Description sent_bystring The name of the secondary team admin who sent the request originally. -
TeamLogTeamMergeRequestRejectedShownToSecondaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestReminderDetails
-
Sent a team merge request reminder.
Type:
- Object
Properties:
Name Type Description request_reminder_detailsTeamLogTeamMergeRequestReminderExtraDetails Team merge request reminder details. -
TeamLogTeamMergeRequestReminderExtraDetails
-
Team merge request reminder details
Type:
- Object
Properties:
Name Type Argument Description primary_teamTeamLogPrimaryTeamRequestReminderDetails <optional>
Available if .tag is primary_team. Team merge request reminder details shown to the primary team. secondary_teamTeamLogSecondaryTeamRequestReminderDetails <optional>
Available if .tag is secondary_team. Team merge request reminder details shown to the secondary team. .tag'primary_team' | 'secondary_team' | 'other' Tag identifying the union variant. -
TeamLogTeamMergeRequestReminderShownToPrimaryTeamDetails
-
Sent a team merge request reminder.
Type:
- Object
Properties:
Name Type Description secondary_teamstring The secondary team name. sent_tostring The name of the primary team admin the request was sent to. -
TeamLogTeamMergeRequestReminderShownToPrimaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestReminderShownToSecondaryTeamDetails
-
Sent a team merge request reminder.
Type:
- Object
Properties:
Name Type Description sent_tostring The email of the primary team admin the request was sent to. -
TeamLogTeamMergeRequestReminderShownToSecondaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestReminderType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestRevokedDetails
-
Canceled the team merge.
Type:
- Object
Properties:
Name Type Description teamstring The name of the other team. -
TeamLogTeamMergeRequestRevokedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestSentShownToPrimaryTeamDetails
-
Requested to merge their Dropbox team into yours.
Type:
- Object
Properties:
Name Type Description secondary_teamstring The secondary team name. sent_tostring The name of the primary team admin the request was sent to. -
TeamLogTeamMergeRequestSentShownToPrimaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeRequestSentShownToSecondaryTeamDetails
-
Requested to merge your team into another Dropbox team.
Type:
- Object
Properties:
Name Type Description sent_tostring The email of the primary team admin the request was sent to. -
TeamLogTeamMergeRequestSentShownToSecondaryTeamType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamMergeToDetails
-
Merged this team into another team.
Type:
- Object
Properties:
Name Type Description team_namestring The name of the team that this team was merged into. -
TeamLogTeamMergeToType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamName
-
Team name details
Type:
- Object
Properties:
Name Type Description team_display_namestring Team's display name. team_legal_namestring Team's legal name. -
TeamLogTeamProfileAddBackgroundDetails
-
Added team background to display on shared link headers.
Type:
- Object
-
TeamLogTeamProfileAddBackgroundType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamProfileAddLogoDetails
-
Added team logo to display on shared link headers.
Type:
- Object
-
TeamLogTeamProfileAddLogoType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamProfileChangeBackgroundDetails
-
Changed team background displayed on shared link headers.
Type:
- Object
-
TeamLogTeamProfileChangeBackgroundType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamProfileChangeDefaultLanguageDetails
-
Changed default language for team.
Type:
- Object
Properties:
Name Type Description new_valuestring New team's default language. previous_valuestring Previous team's default language. -
TeamLogTeamProfileChangeDefaultLanguageType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamProfileChangeLogoDetails
-
Changed team logo displayed on shared link headers.
Type:
- Object
-
TeamLogTeamProfileChangeLogoType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamProfileChangeNameDetails
-
Changed team name.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogTeamName New team name. previous_valueTeamLogTeamName <optional>
Previous teams name. Might be missing due to historical data gap. -
TeamLogTeamProfileChangeNameType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamProfileRemoveBackgroundDetails
-
Removed team background displayed on shared link headers.
Type:
- Object
-
TeamLogTeamProfileRemoveBackgroundType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamProfileRemoveLogoDetails
-
Removed team logo displayed on shared link headers.
Type:
- Object
-
TeamLogTeamProfileRemoveLogoType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamSelectiveSyncPolicy
-
Policy for controlling whether team selective sync is enabled for team.
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogTeamSelectiveSyncPolicyChangedDetails
-
Enabled/disabled Team Selective Sync for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogTeamSelectiveSyncPolicy New Team Selective Sync policy. previous_valueTeamLogTeamSelectiveSyncPolicy Previous Team Selective Sync policy. -
TeamLogTeamSelectiveSyncPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamSelectiveSyncSettingsChangedDetails
-
Changed sync default.
Type:
- Object
Properties:
Name Type Description previous_valueFilesSyncSetting Previous value. new_valueFilesSyncSetting New value. -
TeamLogTeamSelectiveSyncSettingsChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTeamSharingWhitelistSubjectsChangedDetails
-
Edited the approved list for sharing externally.
Type:
- Object
Properties:
Name Type Description added_whitelist_subjectsArray.<string> Domains or emails added to the approved list for sharing externally. removed_whitelist_subjectsArray.<string> Domains or emails removed from the approved list for sharing externally. -
TeamLogTeamSharingWhitelistSubjectsChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTfaAddBackupPhoneDetails
-
Added backup phone for two-step verification.
Type:
- Object
-
TeamLogTfaAddBackupPhoneType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTfaAddExceptionDetails
-
Added members to two factor authentication exception list.
Type:
- Object
-
TeamLogTfaAddExceptionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTfaAddSecurityKeyDetails
-
Added security key for two-step verification.
Type:
- Object
-
TeamLogTfaAddSecurityKeyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTfaChangeBackupPhoneDetails
-
Changed backup phone for two-step verification.
Type:
- Object
-
TeamLogTfaChangeBackupPhoneType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTfaChangePolicyDetails
-
Changed two-step verification setting for team.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamPoliciesTwoStepVerificationPolicy New change policy. previous_valueTeamPoliciesTwoStepVerificationPolicy <optional>
Previous change policy. Might be missing due to historical data gap. -
TeamLogTfaChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTfaChangeStatusDetails
-
Enabled/disabled/changed two-step verification setting.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogTfaConfiguration The new two factor authentication configuration. previous_valueTeamLogTfaConfiguration <optional>
The previous two factor authentication configuration. Might be missing due to historical data gap. used_rescue_codeboolean <optional>
Used two factor authentication rescue code. This flag is relevant when the two factor authentication configuration is disabled. -
TeamLogTfaChangeStatusType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTfaConfiguration
-
Two factor authentication configuration. Note: the enabled option is deprecated.
Type:
- Object
Properties:
Name Type Description .tag'authenticator' | 'disabled' | 'enabled' | 'sms' | 'other' Tag identifying the union variant. -
TeamLogTfaRemoveBackupPhoneDetails
-
Removed backup phone for two-step verification.
Type:
- Object
-
TeamLogTfaRemoveBackupPhoneType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTfaRemoveExceptionDetails
-
Removed members from two factor authentication exception list.
Type:
- Object
-
TeamLogTfaRemoveExceptionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTfaRemoveSecurityKeyDetails
-
Removed security key for two-step verification.
Type:
- Object
-
TeamLogTfaRemoveSecurityKeyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTfaResetDetails
-
Reset two-step verification for team member.
Type:
- Object
-
TeamLogTfaResetType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTimeUnit
-
Type:
- Object
Properties:
Name Type Description .tag'days' | 'hours' | 'milliseconds' | 'minutes' | 'months' | 'seconds' | 'weeks' | 'years' | 'other' Tag identifying the union variant. -
TeamLogTrustedNonTeamMemberLogInfo
-
User that is not a member of the team but considered trusted.
Type:
- Object
Properties:
Name Type Argument Description .tag'trusted_non_team_member' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. trusted_non_team_member_typeTeamLogTrustedNonTeamMemberType Indicates the type of the member of a trusted team. account_idstring <optional>
User unique ID. display_namestring <optional>
User display name. emailstring <optional>
User email address. teamTeamLogTeamLogInfo <optional>
Details about this user's trusted team. -
TeamLogTrustedNonTeamMemberType
-
Type:
- Object
Properties:
Name Type Description .tag'enterprise_admin' | 'multi_instance_admin' | 'other' Tag identifying the union variant. -
TeamLogTrustedTeamsRequestAction
-
Type:
- Object
Properties:
Name Type Description .tag'accepted' | 'declined' | 'expired' | 'invited' | 'revoked' | 'other' Tag identifying the union variant. -
TeamLogTrustedTeamsRequestState
-
Type:
- Object
Properties:
Name Type Description .tag'invited' | 'linked' | 'unlinked' | 'other' Tag identifying the union variant. -
TeamLogTwoAccountChangePolicyDetails
-
Enabled/disabled option for members to link personal Dropbox account and team account to same computer.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogTwoAccountPolicy New two account policy. previous_valueTeamLogTwoAccountPolicy <optional>
Previous two account policy. Might be missing due to historical data gap. -
TeamLogTwoAccountChangePolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogTwoAccountPolicy
-
Policy for pairing personal account to work account
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogUndoNamingConventionDetails
-
Reverted naming convention.
Type:
- Object
-
TeamLogUndoNamingConventionType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogUndoOrganizeFolderWithTidyDetails
-
Removed multi-file organize.
Type:
- Object
-
TeamLogUndoOrganizeFolderWithTidyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogUserLinkedAppLogInfo
-
User linked app
Type:
- Object
Properties:
Name Type Argument Description .tag'user_linked_app' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. app_idstring <optional>
App unique ID. display_namestring <optional>
App display name. -
TeamLogUserLogInfo
-
User's logged information.
Type:
- Object
Properties:
Name Type Argument Description .tag"team_member" | "trusted_non_team_member" | "non_team_member" Tag identifying the subtype variant. account_idstring <optional>
User unique ID. display_namestring <optional>
User display name. emailstring <optional>
User email address. -
TeamLogUserNameLogInfo
-
User's name logged information
Type:
- Object
Properties:
Name Type Argument Description given_namestring Given name. surnamestring Surname. localestring <optional>
Locale. Might be missing due to historical data gap. -
TeamLogUserOrTeamLinkedAppLogInfo
-
User or team linked app. Used when linked type is missing due to historical data gap.
Type:
- Object
Properties:
Name Type Argument Description .tag'user_or_team_linked_app' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. app_idstring <optional>
App unique ID. display_namestring <optional>
App display name. -
TeamLogUserTagsAddedDetails
-
Tagged a file.
Type:
- Object
Properties:
Name Type Description valuesArray.<string> values. -
TeamLogUserTagsAddedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogUserTagsRemovedDetails
-
Removed tags.
Type:
- Object
Properties:
Name Type Description valuesArray.<string> values. -
TeamLogUserTagsRemovedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogViewerInfoPolicyChangedDetails
-
Changed team policy for viewer info.
Type:
- Object
Properties:
Name Type Description previous_valueTeamLogPassPolicy Previous Viewer Info policy. new_valueTeamLogPassPolicy New Viewer Info policy. -
TeamLogViewerInfoPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogWatermarkingPolicy
-
Policy for controlling team access to watermarking feature
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamLogWatermarkingPolicyChangedDetails
-
Changed watermarking policy for team.
Type:
- Object
Properties:
Name Type Description new_valueTeamLogWatermarkingPolicy New watermarking policy. previous_valueTeamLogWatermarkingPolicy Previous watermarking policy. -
TeamLogWatermarkingPolicyChangedType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogWebDeviceSessionLogInfo
-
Information on active web sessions
Type:
- Object
Properties:
Name Type Argument Description .tag'web_device_session' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. user_agentstring Information on the hosting device. osstring Information on the hosting operating system. browserstring Information on the browser used for this web session. ip_addressstring <optional>
The IP address of the last activity from this session. createdTimestamp <optional>
The time this session was created. updatedTimestamp <optional>
The time of the last activity from this session. session_infoTeamLogWebSessionLogInfo <optional>
Web session unique id. -
TeamLogWebSessionLogInfo
-
Web session.
Type:
- Object
Properties:
Name Type Argument Description .tag'web' <optional>
Tag identifying this subtype variant. This field is only present when needed to discriminate between multiple possible subtypes. session_idstring <optional>
Session ID. -
TeamLogWebSessionsChangeActiveSessionLimitDetails
-
Changed limit on active sessions per member.
Type:
- Object
Properties:
Name Type Description previous_valuestring Previous max number of concurrent active sessions policy. new_valuestring New max number of concurrent active sessions policy. -
TeamLogWebSessionsChangeActiveSessionLimitType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogWebSessionsChangeFixedLengthPolicyDetails
-
Changed how long members can stay signed in to Dropbox.com.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogWebSessionsFixedLengthPolicy <optional>
New session length policy. Might be missing due to historical data gap. previous_valueTeamLogWebSessionsFixedLengthPolicy <optional>
Previous session length policy. Might be missing due to historical data gap. -
TeamLogWebSessionsChangeFixedLengthPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogWebSessionsChangeIdleLengthPolicyDetails
-
Changed how long team members can be idle while signed in to Dropbox.com.
Type:
- Object
Properties:
Name Type Argument Description new_valueTeamLogWebSessionsIdleLengthPolicy <optional>
New idle length policy. Might be missing due to historical data gap. previous_valueTeamLogWebSessionsIdleLengthPolicy <optional>
Previous idle length policy. Might be missing due to historical data gap. -
TeamLogWebSessionsChangeIdleLengthPolicyType
-
Type:
- Object
Properties:
Name Type Description descriptionstring -
TeamLogWebSessionsFixedLengthPolicy
-
Web sessions fixed length policy.
Type:
- Object
Properties:
Name Type Argument Description definedTeamLogDurationLogInfo <optional>
Available if .tag is defined. Defined fixed session length. .tag'defined' | 'undefined' | 'other' Tag identifying the union variant. -
TeamLogWebSessionsIdleLengthPolicy
-
Web sessions idle length policy.
Type:
- Object
Properties:
Name Type Argument Description definedTeamLogDurationLogInfo <optional>
Available if .tag is defined. Defined idle session length. .tag'defined' | 'undefined' | 'other' Tag identifying the union variant. -
TeamMemberAccess
-
Specify access type a member should have when joined to a group.
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg Identity of a user. access_typeTeamGroupAccessType Access type. -
TeamMemberAddArg
-
Type:
- Object
Properties:
Name Type Argument Description member_emailstring member_given_namestring <optional>
Member's first name. member_surnamestring <optional>
Member's last name. member_external_idstring <optional>
External ID for member. member_persistent_idstring <optional>
Persistent ID for member. This field is only available to teams using persistent ID SAML configuration. send_welcome_emailboolean Whether to send a welcome email to the member. If send_welcome_email is false, no email invitation will be sent to the user. This may be useful for apps using single sign-on (SSO) flows for onboarding that want to handle announcements themselves. is_directory_restrictedboolean <optional>
Whether a user is directory restricted. roleTeamAdminTier -
TeamMemberAddArgBase
-
Type:
- Object
Properties:
Name Type Argument Description member_emailstring member_given_namestring <optional>
Member's first name. member_surnamestring <optional>
Member's last name. member_external_idstring <optional>
External ID for member. member_persistent_idstring <optional>
Persistent ID for member. This field is only available to teams using persistent ID SAML configuration. send_welcome_emailboolean Whether to send a welcome email to the member. If send_welcome_email is false, no email invitation will be sent to the user. This may be useful for apps using single sign-on (SSO) flows for onboarding that want to handle announcements themselves. is_directory_restrictedboolean <optional>
Whether a user is directory restricted. -
TeamMemberAddResult
-
Describes the result of attempting to add a single user to the team. 'success' is the only value indicating that a user was indeed added to the team - the other values explain the type of failure that occurred, and include the email of the user for which the operation has failed.
Type:
- Object
Properties:
Name Type Argument Description team_license_limitstring <optional>
Available if .tag is team_license_limit. Team is already full. The organization has no available licenses. free_team_member_limit_reachedstring <optional>
Available if .tag is free_team_member_limit_reached. Team is already full. The free team member limit has been reached. user_already_on_teamstring <optional>
Available if .tag is user_already_on_team. User is already on this team. The provided email address is associated with a user who is already a member of (including in recoverable state) or invited to the team. user_on_another_teamstring <optional>
Available if .tag is user_on_another_team. User is already on another team. The provided email address is associated with a user that is already a member or invited to another team. user_already_pairedstring <optional>
Available if .tag is user_already_paired. User is already paired. user_migration_failedstring <optional>
Available if .tag is user_migration_failed. User migration has failed. duplicate_external_member_idstring <optional>
Available if .tag is duplicate_external_member_id. A user with the given external member ID already exists on the team (including in recoverable state). duplicate_member_persistent_idstring <optional>
Available if .tag is duplicate_member_persistent_id. A user with the given persistent ID already exists on the team (including in recoverable state). persistent_id_disabledstring <optional>
Available if .tag is persistent_id_disabled. Persistent ID is only available to teams with persistent ID SAML configuration. Please contact Dropbox for more information. user_creation_failedstring <optional>
Available if .tag is user_creation_failed. User creation has failed. successTeamTeamMemberInfo <optional>
Available if .tag is success. Describes a user that was successfully added to the team. .tag'team_license_limit' | 'free_team_member_limit_reached' | 'user_already_on_team' | 'user_on_another_team' | 'user_already_paired' | 'user_migration_failed' | 'duplicate_external_member_id' | 'duplicate_member_persistent_id' | 'persistent_id_disabled' | 'user_creation_failed' | 'success' Tag identifying the union variant. -
TeamMemberAddResultBase
-
Type:
- Object
Properties:
Name Type Argument Description team_license_limitstring <optional>
Available if .tag is team_license_limit. Team is already full. The organization has no available licenses. free_team_member_limit_reachedstring <optional>
Available if .tag is free_team_member_limit_reached. Team is already full. The free team member limit has been reached. user_already_on_teamstring <optional>
Available if .tag is user_already_on_team. User is already on this team. The provided email address is associated with a user who is already a member of (including in recoverable state) or invited to the team. user_on_another_teamstring <optional>
Available if .tag is user_on_another_team. User is already on another team. The provided email address is associated with a user that is already a member or invited to another team. user_already_pairedstring <optional>
Available if .tag is user_already_paired. User is already paired. user_migration_failedstring <optional>
Available if .tag is user_migration_failed. User migration has failed. duplicate_external_member_idstring <optional>
Available if .tag is duplicate_external_member_id. A user with the given external member ID already exists on the team (including in recoverable state). duplicate_member_persistent_idstring <optional>
Available if .tag is duplicate_member_persistent_id. A user with the given persistent ID already exists on the team (including in recoverable state). persistent_id_disabledstring <optional>
Available if .tag is persistent_id_disabled. Persistent ID is only available to teams with persistent ID SAML configuration. Please contact Dropbox for more information. user_creation_failedstring <optional>
Available if .tag is user_creation_failed. User creation has failed. .tag'team_license_limit' | 'free_team_member_limit_reached' | 'user_already_on_team' | 'user_on_another_team' | 'user_already_paired' | 'user_migration_failed' | 'duplicate_external_member_id' | 'duplicate_member_persistent_id' | 'persistent_id_disabled' | 'user_creation_failed' Tag identifying the union variant. -
TeamMemberAddV2Arg
-
Type:
- Object
Properties:
Name Type Argument Description member_emailstring member_given_namestring <optional>
Member's first name. member_surnamestring <optional>
Member's last name. member_external_idstring <optional>
External ID for member. member_persistent_idstring <optional>
Persistent ID for member. This field is only available to teams using persistent ID SAML configuration. send_welcome_emailboolean Whether to send a welcome email to the member. If send_welcome_email is false, no email invitation will be sent to the user. This may be useful for apps using single sign-on (SSO) flows for onboarding that want to handle announcements themselves. is_directory_restrictedboolean <optional>
Whether a user is directory restricted. role_idsArray.<Object> <optional>
-
TeamMemberAddV2Result
-
Describes the result of attempting to add a single user to the team. 'success' is the only value indicating that a user was indeed added to the team - the other values explain the type of failure that occurred, and include the email of the user for which the operation has failed.
Type:
- Object
Properties:
Name Type Argument Description team_license_limitstring <optional>
Available if .tag is team_license_limit. Team is already full. The organization has no available licenses. free_team_member_limit_reachedstring <optional>
Available if .tag is free_team_member_limit_reached. Team is already full. The free team member limit has been reached. user_already_on_teamstring <optional>
Available if .tag is user_already_on_team. User is already on this team. The provided email address is associated with a user who is already a member of (including in recoverable state) or invited to the team. user_on_another_teamstring <optional>
Available if .tag is user_on_another_team. User is already on another team. The provided email address is associated with a user that is already a member or invited to another team. user_already_pairedstring <optional>
Available if .tag is user_already_paired. User is already paired. user_migration_failedstring <optional>
Available if .tag is user_migration_failed. User migration has failed. duplicate_external_member_idstring <optional>
Available if .tag is duplicate_external_member_id. A user with the given external member ID already exists on the team (including in recoverable state). duplicate_member_persistent_idstring <optional>
Available if .tag is duplicate_member_persistent_id. A user with the given persistent ID already exists on the team (including in recoverable state). persistent_id_disabledstring <optional>
Available if .tag is persistent_id_disabled. Persistent ID is only available to teams with persistent ID SAML configuration. Please contact Dropbox for more information. user_creation_failedstring <optional>
Available if .tag is user_creation_failed. User creation has failed. successTeamTeamMemberInfoV2 <optional>
Available if .tag is success. Describes a user that was successfully added to the team. .tag'team_license_limit' | 'free_team_member_limit_reached' | 'user_already_on_team' | 'user_on_another_team' | 'user_already_paired' | 'user_migration_failed' | 'duplicate_external_member_id' | 'duplicate_member_persistent_id' | 'persistent_id_disabled' | 'user_creation_failed' | 'success' | 'other' Tag identifying the union variant. -
TeamMemberDevices
-
Information on devices of a team's member.
Type:
- Object
Properties:
Name Type Argument Description team_member_idstring The member unique Id. web_sessionsArray.<TeamActiveWebSession> <optional>
List of web sessions made by this team member. desktop_clientsArray.<TeamDesktopClientSession> <optional>
List of desktop clients by this team member. mobile_clientsArray.<TeamMobileClientSession> <optional>
List of mobile clients by this team member. -
TeamMemberLinkedApps
-
Information on linked applications of a team member.
Type:
- Object
Properties:
Name Type Description team_member_idstring The member unique Id. linked_api_appsArray.<TeamApiApp> List of third party applications linked by this team member. -
TeamMemberProfile
-
Basic member profile.
Type:
- Object
Properties:
Name Type Argument Description team_member_idstring ID of user as a member of a team. emailstring Email address of user. email_verifiedboolean Is true if the user's email is verified to be owned by the user. statusTeamTeamMemberStatus The user's status as a member of a specific team. nameUsersName Representations for a person's name. membership_typeTeamTeamMembershipType The user's membership type: full (normal team member) vs limited (does not use a license; no access to the team's shared quota). external_idstring <optional>
External ID that a team can attach to the user. An application using the API may find it easier to use their own IDs instead of Dropbox IDs like account_id or team_member_id. account_idstring <optional>
A user's account identifier. secondary_emailsArray.<SecondaryEmailsSecondaryEmail> <optional>
Secondary emails of a user. invited_onTimestamp <optional>
The date and time the user was invited to the team (contains value only when the member's status matches TeamMemberStatus.invited). joined_onTimestamp <optional>
The date and time the user joined as a member of a specific team. suspended_onTimestamp <optional>
The date and time the user was suspended from the team (contains value only when the member's status matches TeamMemberStatus.suspended). persistent_idstring <optional>
Persistent ID that a team can attach to the user. The persistent ID is unique ID to be used for SAML authentication. is_directory_restrictedboolean <optional>
Whether the user is a directory restricted user. profile_photo_urlstring <optional>
URL for the photo representing the user, if one is set. -
TeamMembersAddArg
-
Type:
- Object
Properties:
Name Type Description new_membersArray.<TeamMemberAddArg> Details of new members to be added to the team. force_asyncboolean Whether to force the add to happen asynchronously. -
TeamMembersAddArgBase
-
Type:
- Object
Properties:
Name Type Description force_asyncboolean Whether to force the add to happen asynchronously. -
TeamMembersAddJobStatus
-
Type:
- Object
Properties:
Name Type Argument Description completeArray.<TeamMemberAddResult> <optional>
Available if .tag is complete. The asynchronous job has finished. For each member that was specified in the parameter :type:`MembersAddArg` that was provided to :route:`members/add`, a corresponding item is returned in this list. failedstring <optional>
Available if .tag is failed. The asynchronous job returned an error. The string contains an error message. .tag'in_progress' | 'complete' | 'failed' Tag identifying the union variant. -
TeamMembersAddJobStatusV2Result
-
Type:
- Object
Properties:
Name Type Argument Description completeArray.<TeamMemberAddV2Result> <optional>
Available if .tag is complete. The asynchronous job has finished. For each member that was specified in the parameter :type:`MembersAddArg` that was provided to :route:`members/add:2`, a corresponding item is returned in this list. failedstring <optional>
Available if .tag is failed. The asynchronous job returned an error. The string contains an error message. .tag'in_progress' | 'complete' | 'failed' | 'other' Tag identifying the union variant. -
TeamMembersAddLaunch
-
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. completeArray.<TeamMemberAddResult> <optional>
Available if .tag is complete. .tag'async_job_id' | 'complete' Tag identifying the union variant. -
TeamMembersAddLaunchV2Result
-
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. completeArray.<TeamMemberAddV2Result> <optional>
Available if .tag is complete. .tag'async_job_id' | 'complete' | 'other' Tag identifying the union variant. -
TeamMembersAddV2Arg
-
Type:
- Object
Properties:
Name Type Description new_membersArray.<TeamMemberAddV2Arg> Details of new members to be added to the team. force_asyncboolean Whether to force the add to happen asynchronously. -
TeamMembersDataTransferArg
-
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg Identity of user to remove/suspend/have their files moved. transfer_dest_idTeamUserSelectorArg Files from the deleted member account will be transferred to this user. transfer_admin_idTeamUserSelectorArg Errors during the transfer process will be sent via email to this user. -
TeamMembersDeactivateArg
-
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg Identity of user to remove/suspend/have their files moved. wipe_databoolean If provided, controls if the user's data will be deleted on their linked devices. -
TeamMembersDeactivateBaseArg
-
Exactly one of team_member_id, email, or external_id must be provided to identify the user account.
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg Identity of user to remove/suspend/have their files moved. -
TeamMembersDeactivateError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'user_not_in_team' | 'other' Tag identifying the union variant. -
TeamMembersDeleteProfilePhotoArg
-
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg Identity of the user whose profile photo will be deleted. -
TeamMembersDeleteProfilePhotoError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'user_not_in_team' | 'set_profile_disallowed' | 'other' Tag identifying the union variant. -
TeamMemberSelectorError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'user_not_in_team' Tag identifying the union variant. -
TeamMembersGetAvailableTeamMemberRolesResult
-
Available TeamMemberRole for the connected team. To be used with members/set_admin_permissions:2.
Type:
- Object
Properties:
Name Type Description rolesArray.<TeamTeamMemberRole> Available roles. -
TeamMembersGetInfoArgs
-
Type:
- Object
Properties:
Name Type Description membersArray.<TeamUserSelectorArg> List of team members. -
TeamMembersGetInfoError
-
Type:
- Object
Properties:
Name Type Description .tag'other' Tag identifying the union variant. -
TeamMembersGetInfoItem
-
Describes a result obtained for a single user whose id was specified in the parameter of members/get_info.
Type:
- Object
Properties:
Name Type Argument Description id_not_foundstring <optional>
Available if .tag is id_not_found. An ID that was provided as a parameter to :route:`members/get_info` or :route:`members/get_info:2`, and did not match a corresponding user. This might be a team_member_id, an email, or an external ID, depending on how the method was called. member_infoTeamTeamMemberInfo <optional>
Available if .tag is member_info. Info about a team member. .tag'id_not_found' | 'member_info' Tag identifying the union variant. -
TeamMembersGetInfoItemBase
-
Type:
- Object
Properties:
Name Type Argument Description id_not_foundstring <optional>
Available if .tag is id_not_found. An ID that was provided as a parameter to :route:`members/get_info` or :route:`members/get_info:2`, and did not match a corresponding user. This might be a team_member_id, an email, or an external ID, depending on how the method was called. .tag'id_not_found' Tag identifying the union variant. -
TeamMembersGetInfoItemV2
-
Describes a result obtained for a single user whose id was specified in the parameter of members/get_info:2.
Type:
- Object
Properties:
Name Type Argument Description id_not_foundstring <optional>
Available if .tag is id_not_found. An ID that was provided as a parameter to :route:`members/get_info` or :route:`members/get_info:2`, and did not match a corresponding user. This might be a team_member_id, an email, or an external ID, depending on how the method was called. member_infoTeamTeamMemberInfoV2 <optional>
Available if .tag is member_info. Info about a team member. .tag'id_not_found' | 'member_info' | 'other' Tag identifying the union variant. -
TeamMembersGetInfoV2Arg
-
Type:
- Object
Properties:
Name Type Description membersArray.<TeamUserSelectorArg> List of team members. -
TeamMembersGetInfoV2Result
-
Type:
- Object
Properties:
Name Type Description members_infoArray.<TeamMembersGetInfoItemV2> List of team members info. -
TeamMembersInfo
-
Type:
- Object
Properties:
Name Type Description team_member_idsArray.<Object> Team member IDs of the users under this hold. permanently_deleted_usersnumber The number of permanently deleted users that were under this hold. -
TeamMembersListArg
-
Type:
- Object
Properties:
Name Type Description limitnumber Number of results to return per call. include_removedboolean Whether to return removed members. -
TeamMembersListContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring Indicates from what point to get the next set of members. -
TeamMembersListContinueError
-
Type:
- Object
Properties:
Name Type Description .tag'invalid_cursor' | 'other' Tag identifying the union variant. -
TeamMembersListError
-
Type:
- Object
Properties:
Name Type Description .tag'other' Tag identifying the union variant. -
TeamMembersListResult
-
Type:
- Object
Properties:
Name Type Description membersArray.<TeamTeamMemberInfo> List of team members. cursorstring Pass the cursor into members/list/continue to obtain the additional members. has_moreboolean Is true if there are additional team members that have not been returned yet. An additional call to members/list/continue can retrieve them. -
TeamMembersListV2Result
-
Type:
- Object
Properties:
Name Type Description membersArray.<TeamTeamMemberInfoV2> List of team members. cursorstring Pass the cursor into members/list/continue:2 to obtain the additional members. has_moreboolean Is true if there are additional team members that have not been returned yet. An additional call to members/list/continue:2 can retrieve them. -
TeamMembersRecoverArg
-
Exactly one of team_member_id, email, or external_id must be provided to identify the user account.
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg Identity of user to recover. -
TeamMembersRecoverError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'user_unrecoverable' | 'user_not_in_team' | 'team_license_limit' | 'other' Tag identifying the union variant. -
TeamMembersRemoveArg
-
Type:
- Object
Properties:
Name Type Argument Description userTeamUserSelectorArg Identity of user to remove/suspend/have their files moved. wipe_databoolean If provided, controls if the user's data will be deleted on their linked devices. transfer_dest_idTeamUserSelectorArg <optional>
If provided, files from the deleted member account will be transferred to this user. transfer_admin_idTeamUserSelectorArg <optional>
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. keep_accountboolean 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. retain_team_sharesboolean If provided, allows removed users to keep access to Dropbox folders (not Dropbox Paper folders) already explicitly shared with them (not via a group) when they are downgraded to a Basic account. Users will not retain access to folders that do not allow external sharing. In order to keep the sharing relationships, the arguments wipe_data should be set to false and keep_account should be set to true. -
TeamMembersRemoveError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'user_not_in_team' | 'other' | 'removed_and_transfer_dest_should_differ' | 'removed_and_transfer_admin_should_differ' | 'transfer_dest_user_not_found' | 'transfer_dest_user_not_in_team' | 'transfer_admin_user_not_in_team' | 'transfer_admin_user_not_found' | 'unspecified_transfer_admin_id' | 'transfer_admin_is_not_admin' | 'recipient_not_verified' | 'remove_last_admin' | 'cannot_keep_account_and_transfer' | 'cannot_keep_account_and_delete_data' | 'email_address_too_long_to_be_disabled' | 'cannot_keep_invited_user_account' | 'cannot_retain_shares_when_data_wiped' | 'cannot_retain_shares_when_no_account_kept' | 'cannot_retain_shares_when_team_external_sharing_off' | 'cannot_keep_account' | 'cannot_keep_account_under_legal_hold' | 'cannot_keep_account_required_to_sign_tos' Tag identifying the union variant. -
TeamMembersSendWelcomeError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'user_not_in_team' | 'other' Tag identifying the union variant. -
TeamMembersSetPermissions2Arg
-
Exactly one of team_member_id, email, or external_id must be provided to identify the user account.
Type:
- Object
Properties:
Name Type Argument Description userTeamUserSelectorArg Identity of user whose role will be set. new_rolesArray.<Object> <optional>
The new roles for the member. Send empty list to make user member only. For now, only up to one role is allowed. -
TeamMembersSetPermissions2Error
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'last_admin' | 'user_not_in_team' | 'cannot_set_permissions' | 'role_not_found' | 'other' Tag identifying the union variant. -
TeamMembersSetPermissions2Result
-
Type:
- Object
Properties:
Name Type Argument Description team_member_idstring The member ID of the user to which the change was applied. rolesArray.<TeamTeamMemberRole> <optional>
The roles after the change. Empty in case the user become a non-admin. -
TeamMembersSetPermissionsArg
-
Exactly one of team_member_id, email, or external_id must be provided to identify the user account.
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg Identity of user whose role will be set. new_roleTeamAdminTier The new role of the member. -
TeamMembersSetPermissionsError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'last_admin' | 'user_not_in_team' | 'cannot_set_permissions' | 'team_license_limit' | 'other' Tag identifying the union variant. -
TeamMembersSetPermissionsResult
-
Type:
- Object
Properties:
Name Type Description team_member_idstring The member ID of the user to which the change was applied. roleTeamAdminTier The role after the change. -
TeamMembersSetProfileArg
-
Exactly one of team_member_id, email, or external_id must be provided to identify the user account. At least one of new_email, new_external_id, new_given_name, and/or new_surname must be provided.
Type:
- Object
Properties:
Name Type Argument Description userTeamUserSelectorArg Identity of user whose profile will be set. new_emailstring <optional>
New email for member. new_external_idstring <optional>
New external ID for member. new_given_namestring <optional>
New given name for member. new_surnamestring <optional>
New surname for member. new_persistent_idstring <optional>
New persistent ID. This field only available to teams using persistent ID SAML configuration. new_is_directory_restrictedboolean <optional>
New value for whether the user is a directory restricted user. -
TeamMembersSetProfileError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'user_not_in_team' | 'external_id_and_new_external_id_unsafe' | 'no_new_data_specified' | 'email_reserved_for_other_user' | 'external_id_used_by_other_user' | 'set_profile_disallowed' | 'param_cannot_be_empty' | 'persistent_id_disabled' | 'persistent_id_used_by_other_user' | 'directory_restricted_off' | 'other' Tag identifying the union variant. -
TeamMembersSetProfilePhotoArg
-
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg Identity of the user whose profile photo will be set. photoAccountPhotoSourceArg Image to set as the member's new profile photo. -
TeamMembersSetProfilePhotoError
-
Type:
- Object
Properties:
Name Type Argument Description photo_errorAccountSetProfilePhotoError <optional>
Available if .tag is photo_error. .tag'user_not_found' | 'user_not_in_team' | 'set_profile_disallowed' | 'photo_error' | 'other' Tag identifying the union variant. -
TeamMembersSuspendError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'user_not_in_team' | 'other' | 'suspend_inactive_user' | 'suspend_last_admin' | 'team_license_limit' Tag identifying the union variant. -
TeamMembersTransferFilesError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'user_not_in_team' | 'other' | 'removed_and_transfer_dest_should_differ' | 'removed_and_transfer_admin_should_differ' | 'transfer_dest_user_not_found' | 'transfer_dest_user_not_in_team' | 'transfer_admin_user_not_in_team' | 'transfer_admin_user_not_found' | 'unspecified_transfer_admin_id' | 'transfer_admin_is_not_admin' | 'recipient_not_verified' Tag identifying the union variant. -
TeamMembersTransferFormerMembersFilesError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'user_not_in_team' | 'other' | 'removed_and_transfer_dest_should_differ' | 'removed_and_transfer_admin_should_differ' | 'transfer_dest_user_not_found' | 'transfer_dest_user_not_in_team' | 'transfer_admin_user_not_in_team' | 'transfer_admin_user_not_found' | 'unspecified_transfer_admin_id' | 'transfer_admin_is_not_admin' | 'recipient_not_verified' | 'user_data_is_being_transferred' | 'user_not_removed' | 'user_data_cannot_be_transferred' | 'user_data_already_transferred' Tag identifying the union variant. -
TeamMembersUnsuspendArg
-
Exactly one of team_member_id, email, or external_id must be provided to identify the user account.
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg Identity of user to unsuspend. -
TeamMembersUnsuspendError
-
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' | 'user_not_in_team' | 'other' | 'unsuspend_non_suspended_member' | 'team_license_limit' Tag identifying the union variant. -
TeamMobileClientPlatform
-
Type:
- Object
Properties:
Name Type Description .tag'iphone' | 'ipad' | 'android' | 'windows_phone' | 'blackberry' | 'other' Tag identifying the union variant. -
TeamMobileClientSession
-
Information about linked Dropbox mobile client sessions.
Type:
- Object
Properties:
Name Type Argument Description session_idstring The session id. device_namestring The device name. client_typeTeamMobileClientPlatform The mobile application type. ip_addressstring <optional>
The IP address of the last activity from this session. countrystring <optional>
The country from which the last activity from this session was made. createdTimestamp <optional>
The time this session was created. updatedTimestamp <optional>
The time of the last activity from this session. client_versionstring <optional>
The dropbox client version. os_versionstring <optional>
The hosting OS version. last_carrierstring <optional>
last carrier used by the device. -
TeamNamespaceMetadata
-
Properties of a namespace.
Type:
- Object
Properties:
Name Type Argument Description namestring The name of this namespace. namespace_idstring The ID of this namespace. namespace_typeTeamNamespaceType The type of this namespace. team_member_idstring <optional>
If this is a team member or app folder, the ID of the owning team member. Otherwise, this field is not present. -
TeamNamespaceType
-
Type:
- Object
Properties:
Name Type Description .tag'app_folder' | 'shared_folder' | 'team_folder' | 'team_member_folder' | 'other' Tag identifying the union variant. -
TeamPoliciesCameraUploadsPolicyState
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamPoliciesComputerBackupPolicyState
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'default' | 'other' Tag identifying the union variant. -
TeamPoliciesEmmState
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'optional' | 'required' | 'other' Tag identifying the union variant. -
TeamPoliciesExternalDriveBackupPolicyState
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'default' | 'other' Tag identifying the union variant. -
TeamPoliciesFileLockingPolicyState
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamPoliciesFileProviderMigrationPolicyState
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'default' | 'other' Tag identifying the union variant. -
TeamPoliciesGroupCreation
-
Type:
- Object
Properties:
Name Type Description .tag'admins_and_members' | 'admins_only' Tag identifying the union variant. -
TeamPoliciesOfficeAddInPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamPoliciesPaperDefaultFolderPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'everyone_in_team' | 'invite_only' | 'other' Tag identifying the union variant. -
TeamPoliciesPaperDeploymentPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'full' | 'partial' | 'other' Tag identifying the union variant. -
TeamPoliciesPaperDesktopPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamPoliciesPaperEnabledPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'unspecified' | 'other' Tag identifying the union variant. -
TeamPoliciesPasswordControlMode
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamPoliciesPasswordStrengthPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'minimal_requirements' | 'moderate_password' | 'strong_password' | 'other' Tag identifying the union variant. -
TeamPoliciesRolloutMethod
-
Type:
- Object
Properties:
Name Type Description .tag'unlink_all' | 'unlink_most_inactive' | 'add_member_to_exceptions' Tag identifying the union variant. -
Policy governing which shared folders a team member can join.
Type:
- Object
Properties:
Name Type Description .tag'from_team_only' | 'from_anyone' | 'other' Tag identifying the union variant. -
Policy governing who can be a member of a folder shared by a team member.
Type:
- Object
Properties:
Name Type Description .tag'team' | 'anyone' | 'other' Tag identifying the union variant. -
Policy governing the visibility of shared links. This policy can apply to newly created shared links, or all shared links.
Type:
- Object
Properties:
Name Type Description .tag'default_public' | 'default_team_only' | 'team_only' | 'default_no_one' | 'other' Tag identifying the union variant. -
TeamPoliciesShowcaseDownloadPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamPoliciesShowcaseEnabledPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamPoliciesShowcaseExternalSharingPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamPoliciesSmarterSmartSyncPolicyState
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamPoliciesSmartSyncPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'local' | 'on_demand' | 'other' Tag identifying the union variant. -
TeamPoliciesSsoPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'optional' | 'required' | 'other' Tag identifying the union variant. -
TeamPoliciesSuggestMembersPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'disabled' | 'enabled' | 'other' Tag identifying the union variant. -
TeamPoliciesTeamMemberPolicies
-
Policies governing team members.
Type:
- Object
Properties:
Name Type Description sharingTeamPoliciesTeamSharingPolicies Policies governing sharing. emm_stateTeamPoliciesEmmState This describes the Enterprise Mobility Management (EMM) state for this team. This information can be used to understand if an organization is integrating with a third-party EMM vendor to further manage and apply restrictions upon the team's Dropbox usage on mobile devices. This is a new feature and in the future we'll be adding more new fields and additional documentation. office_addinTeamPoliciesOfficeAddInPolicy The admin policy around the Dropbox Office Add-In for this team. suggest_members_policyTeamPoliciesSuggestMembersPolicy The team policy on if teammembers are allowed to suggest users for admins to invite to the team. -
TeamPoliciesTeamSharingPolicies
-
Policies governing sharing within and outside of the team.
Type:
- Object
Properties:
Name Type Description shared_folder_member_policyTeamPoliciesSharedFolderMemberPolicy - Who can join folders shared by team members. shared_folder_join_policyTeamPoliciesSharedFolderJoinPolicy Which shared folders team members can join. shared_link_create_policyTeamPoliciesSharedLinkCreatePolicy Who can view shared links owned by team members. group_creation_policyTeamPoliciesGroupCreation Who can create groups. -
TeamPoliciesTwoStepVerificationPolicy
-
Type:
- Object
Properties:
Name Type Description .tag'require_tfa_enable' | 'require_tfa_disable' | 'other' Tag identifying the union variant. -
TeamPoliciesTwoStepVerificationState
-
Type:
- Object
Properties:
Name Type Description .tag'required' | 'optional' | 'disabled' | 'other' Tag identifying the union variant. -
TeamRemoveCustomQuotaResult
-
User result for setting member custom quota.
Type:
- Object
Properties:
Name Type Argument Description successTeamUserSelectorArg <optional>
Available if .tag is success. Successfully removed user. invalid_userTeamUserSelectorArg <optional>
Available if .tag is invalid_user. Invalid user (not in team). .tag'success' | 'invalid_user' | 'other' Tag identifying the union variant. -
TeamRemovedStatus
-
Type:
- Object
Properties:
Name Type Description is_recoverableboolean True if the removed team member is recoverable. is_disconnectedboolean True if the team member's account was converted to individual account. -
TeamResendSecondaryEmailResult
-
Result of trying to resend verification email to a secondary email address. 'success' is the only value indicating that a verification email was successfully sent. The other values explain the type of error that occurred, and include the email for which the error occurred.
Type:
- Object
Properties:
Name Type Argument Description successstring <optional>
Available if .tag is success. A verification email was successfully sent to the secondary email address. not_pendingstring <optional>
Available if .tag is not_pending. This secondary email address is not pending for the user. rate_limitedstring <optional>
Available if .tag is rate_limited. Too many emails are being sent to this email address. Please try again later. .tag'success' | 'not_pending' | 'rate_limited' | 'other' Tag identifying the union variant. -
TeamResendVerificationEmailArg
-
Type:
- Object
Properties:
Name Type Description emails_to_resendArray.<TeamUserSecondaryEmailsArg> List of users and secondary emails to resend verification emails to. -
TeamResendVerificationEmailResult
-
List of users and resend results.
Type:
- Object
Properties:
Name Type Description resultsArray.<TeamUserResendResult> -
TeamRevokeDesktopClientArg
-
Type:
- Object
Properties:
Name Type Description session_idstring The session id. team_member_idstring The unique id of the member owning the device. delete_on_unlinkboolean Whether to delete all files of the account (this is possible only if supported by the desktop client and will be made the next time the client access the account). -
TeamRevokeDeviceSessionArg
-
Type:
- Object
Properties:
Name Type Argument Description web_sessionTeamDeviceSessionArg <optional>
Available if .tag is web_session. End an active session. desktop_clientTeamRevokeDesktopClientArg <optional>
Available if .tag is desktop_client. Unlink a linked desktop device. mobile_clientTeamDeviceSessionArg <optional>
Available if .tag is mobile_client. Unlink a linked mobile device. .tag'web_session' | 'desktop_client' | 'mobile_client' Tag identifying the union variant. -
TeamRevokeDeviceSessionBatchArg
-
Type:
- Object
Properties:
Name Type Description revoke_devicesArray.<TeamRevokeDeviceSessionArg> -
TeamRevokeDeviceSessionBatchError
-
Type:
- Object
Properties:
Name Type Description .tag'other' Tag identifying the union variant. -
TeamRevokeDeviceSessionBatchResult
-
Type:
- Object
Properties:
Name Type Description revoke_devices_statusArray.<TeamRevokeDeviceSessionStatus> -
TeamRevokeDeviceSessionError
-
Type:
- Object
Properties:
Name Type Description .tag'device_session_not_found' | 'member_not_found' | 'other' Tag identifying the union variant. -
TeamRevokeDeviceSessionStatus
-
Type:
- Object
Properties:
Name Type Argument Description successboolean Result of the revoking request. error_typeTeamRevokeDeviceSessionError <optional>
The error cause in case of a failure. -
TeamRevokeLinkedApiAppArg
-
Type:
- Object
Properties:
Name Type Description app_idstring The application's unique id. team_member_idstring The unique id of the member owning the device. keep_app_folderboolean This flag is not longer supported, the application dedicated folder (in case the application uses one) will be kept. -
TeamRevokeLinkedApiAppBatchArg
-
Type:
- Object
Properties:
Name Type Description revoke_linked_appArray.<TeamRevokeLinkedApiAppArg> -
TeamRevokeLinkedAppBatchError
-
Error returned by linked_apps/revoke_linked_app_batch.
Type:
- Object
Properties:
Name Type Description .tag'other' Tag identifying the union variant. -
TeamRevokeLinkedAppBatchResult
-
Type:
- Object
Properties:
Name Type Description revoke_linked_app_statusArray.<TeamRevokeLinkedAppStatus> -
TeamRevokeLinkedAppError
-
Error returned by linked_apps/revoke_linked_app.
Type:
- Object
Properties:
Name Type Description .tag'app_not_found' | 'member_not_found' | 'app_folder_removal_not_supported' | 'other' Tag identifying the union variant. -
TeamRevokeLinkedAppStatus
-
Type:
- Object
Properties:
Name Type Argument Description successboolean Result of the revoking request. error_typeTeamRevokeLinkedAppError <optional>
The error cause in case of a failure. -
TeamSetCustomQuotaArg
-
Type:
- Object
Properties:
Name Type Description users_and_quotasArray.<TeamUserCustomQuotaArg> List of users and their custom quotas. -
TeamSetCustomQuotaError
-
Error returned when setting member custom quota.
Type:
- Object
Properties:
Name Type Description .tag'too_many_users' | 'other' | 'some_users_are_excluded' Tag identifying the union variant. -
TeamSharingAllowlistAddArgs
-
Structure representing Approve List entries. Domain and emails are supported. At least one entry of any supported type is required.
Type:
- Object
Properties:
Name Type Argument Description domainsArray.<string> <optional>
List of domains represented by valid string representation (RFC-1034/5). emailsArray.<string> <optional>
List of emails represented by valid string representation (RFC-5322/822). -
TeamSharingAllowlistAddError
-
Type:
- Object
Properties:
Name Type Argument Description malformed_entrystring <optional>
Available if .tag is malformed_entry. One of provided values is not valid. entries_already_existstring <optional>
Available if .tag is entries_already_exist. Entries already exists. .tag'malformed_entry' | 'no_entries_provided' | 'too_many_entries_provided' | 'team_limit_reached' | 'unknown_error' | 'entries_already_exist' | 'other' Tag identifying the union variant. -
TeamSharingAllowlistAddResponse
-
This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone.
Type:
- Object
-
TeamSharingAllowlistListArg
-
Type:
- Object
Properties:
Name Type Description limitnumber The number of entries to fetch at one time. -
TeamSharingAllowlistListContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring The cursor returned from a previous call to sharing_allowlist/list or sharing_allowlist/list/continue. -
TeamSharingAllowlistListContinueError
-
Type:
- Object
Properties:
Name Type Description .tag'invalid_cursor' | 'other' Tag identifying the union variant. -
TeamSharingAllowlistListError
-
This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone.
Type:
- Object
-
TeamSharingAllowlistListResponse
-
Type:
- Object
Properties:
Name Type Description domainsArray.<string> List of domains represented by valid string representation (RFC-1034/5). emailsArray.<string> List of emails represented by valid string representation (RFC-5322/822). cursorstring If this is nonempty, there are more entries that can be fetched with sharing_allowlist/list/continue. has_moreboolean if true indicates that more entries can be fetched with sharing_allowlist/list/continue. -
TeamSharingAllowlistRemoveArgs
-
Type:
- Object
Properties:
Name Type Argument Description domainsArray.<string> <optional>
List of domains represented by valid string representation (RFC-1034/5). emailsArray.<string> <optional>
List of emails represented by valid string representation (RFC-5322/822). -
TeamSharingAllowlistRemoveError
-
Type:
- Object
Properties:
Name Type Argument Description malformed_entrystring <optional>
Available if .tag is malformed_entry. One of provided values is not valid. entries_do_not_existstring <optional>
Available if .tag is entries_do_not_exist. One or more provided values do not exist. .tag'malformed_entry' | 'entries_do_not_exist' | 'no_entries_provided' | 'too_many_entries_provided' | 'unknown_error' | 'other' Tag identifying the union variant. -
TeamSharingAllowlistRemoveResponse
-
This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone.
Type:
- Object
-
TeamStorageBucket
-
Describes the number of users in a specific storage bucket.
Type:
- Object
Properties:
Name Type Description bucketstring The name of the storage bucket. For example, '1G' is a bucket of users with storage size up to 1 Giga. usersnumber The number of people whose storage is in the range of this storage bucket. -
TeamTeamFolderAccessError
-
Type:
- Object
Properties:
Name Type Description .tag'invalid_team_folder_id' | 'no_access' | 'other' Tag identifying the union variant. -
TeamTeamFolderActivateError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorTeamTeamFolderAccessError <optional>
Available if .tag is access_error. status_errorTeamTeamFolderInvalidStatusError <optional>
Available if .tag is status_error. team_shared_dropbox_errorTeamTeamFolderTeamSharedDropboxError <optional>
- Available if .tag is team_shared_dropbox_error. .tag'access_error' | 'status_error' | 'team_shared_dropbox_error' | 'other' Tag identifying the union variant. -
TeamTeamFolderArchiveArg
-
Type:
- Object
Properties:
Name Type Description team_folder_idstring The ID of the team folder. force_async_offboolean Whether to force the archive to happen synchronously. -
TeamTeamFolderArchiveError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorTeamTeamFolderAccessError <optional>
Available if .tag is access_error. status_errorTeamTeamFolderInvalidStatusError <optional>
Available if .tag is status_error. team_shared_dropbox_errorTeamTeamFolderTeamSharedDropboxError <optional>
- Available if .tag is team_shared_dropbox_error. .tag'access_error' | 'status_error' | 'team_shared_dropbox_error' | 'other' Tag identifying the union variant. -
TeamTeamFolderArchiveJobStatus
-
Type:
- Object
Properties:
Name Type Argument Description completeTeamTeamFolderMetadata <optional>
Available if .tag is complete. The archive job has finished. The value is the metadata for the resulting team folder. failedTeamTeamFolderArchiveError <optional>
Available if .tag is failed. Error occurred while performing an asynchronous job from :route:`team_folder/archive`. .tag'in_progress' | 'complete' | 'failed' Tag identifying the union variant. -
TeamTeamFolderArchiveLaunch
-
Type:
- Object
Properties:
Name Type Argument Description async_job_idstring <optional>
Available if .tag is async_job_id. This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job. completeTeamTeamFolderMetadata <optional>
Available if .tag is complete. .tag'async_job_id' | 'complete' Tag identifying the union variant. -
TeamTeamFolderCreateArg
-
Type:
- Object
Properties:
Name Type Argument Description namestring Name for the new team folder. sync_settingFilesSyncSettingArg <optional>
The sync setting to apply to this team folder. Only permitted if the team has team selective sync enabled. -
TeamTeamFolderCreateError
-
Type:
- Object
Properties:
Name Type Argument Description sync_settings_errorFilesSyncSettingsError <optional>
Available if .tag is sync_settings_error. An error occurred setting the sync settings. .tag'invalid_folder_name' | 'folder_name_already_used' | 'folder_name_reserved' | 'sync_settings_error' | 'other' Tag identifying the union variant. -
TeamTeamFolderGetInfoItem
-
Type:
- Object
Properties:
Name Type Argument Description id_not_foundstring <optional>
Available if .tag is id_not_found. An ID that was provided as a parameter to :route:`team_folder/get_info` did not match any of the team's team folders. team_folder_metadataTeamTeamFolderMetadata <optional>
Available if .tag is team_folder_metadata. Properties of a team folder. .tag'id_not_found' | 'team_folder_metadata' Tag identifying the union variant. -
TeamTeamFolderIdArg
-
Type:
- Object
Properties:
Name Type Description team_folder_idstring The ID of the team folder. -
TeamTeamFolderIdListArg
-
Type:
- Object
Properties:
Name Type Description team_folder_idsArray.<Object> The list of team folder IDs. -
TeamTeamFolderInvalidStatusError
-
Type:
- Object
Properties:
Name Type Description .tag'active' | 'archived' | 'archive_in_progress' | 'other' Tag identifying the union variant. -
TeamTeamFolderListArg
-
Type:
- Object
Properties:
Name Type Description limitnumber The maximum number of results to return per request. -
TeamTeamFolderListContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring Indicates from what point to get the next set of team folders. -
TeamTeamFolderListContinueError
-
Type:
- Object
Properties:
Name Type Description .tag'invalid_cursor' | 'other' Tag identifying the union variant. -
TeamTeamFolderListError
-
Type:
- Object
Properties:
Name Type Description access_errorTeamTeamFolderAccessError -
TeamTeamFolderListResult
-
Result for team_folder/list and team_folder/list/continue.
Type:
- Object
Properties:
Name Type Description team_foldersArray.<TeamTeamFolderMetadata> List of all team folders in the authenticated team. cursorstring Pass the cursor into team_folder/list/continue to obtain additional team folders. has_moreboolean Is true if there are additional team folders that have not been returned yet. An additional call to team_folder/list/continue can retrieve them. -
TeamTeamFolderMetadata
-
Properties of a team folder.
Type:
- Object
Properties:
Name Type Description team_folder_idstring The ID of the team folder. namestring The name of the team folder. statusTeamTeamFolderStatus The status of the team folder. is_team_shared_dropboxboolean True if this team folder is a shared team root. sync_settingFilesSyncSetting The sync setting applied to this team folder. content_sync_settingsArray.<FilesContentSyncSetting> Sync settings applied to contents of this team folder. -
TeamTeamFolderPermanentlyDeleteError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorTeamTeamFolderAccessError <optional>
Available if .tag is access_error. status_errorTeamTeamFolderInvalidStatusError <optional>
Available if .tag is status_error. team_shared_dropbox_errorTeamTeamFolderTeamSharedDropboxError <optional>
- Available if .tag is team_shared_dropbox_error. .tag'access_error' | 'status_error' | 'team_shared_dropbox_error' | 'other' Tag identifying the union variant. -
TeamTeamFolderRenameArg
-
Type:
- Object
Properties:
Name Type Description team_folder_idstring The ID of the team folder. namestring New team folder name. -
TeamTeamFolderRenameError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorTeamTeamFolderAccessError <optional>
Available if .tag is access_error. status_errorTeamTeamFolderInvalidStatusError <optional>
Available if .tag is status_error. team_shared_dropbox_errorTeamTeamFolderTeamSharedDropboxError <optional>
- Available if .tag is team_shared_dropbox_error. .tag'access_error' | 'status_error' | 'team_shared_dropbox_error' | 'other' | 'invalid_folder_name' | 'folder_name_already_used' | 'folder_name_reserved' Tag identifying the union variant. -
TeamTeamFolderStatus
-
Type:
- Object
Properties:
Name Type Description .tag'active' | 'archived' | 'archive_in_progress' | 'other' Tag identifying the union variant. -
Type:
- Object
Properties:
Name Type Description .tag'disallowed' | 'other' Tag identifying the union variant. -
TeamTeamFolderUpdateSyncSettingsArg
-
Type:
- Object
Properties:
Name Type Argument Description team_folder_idstring The ID of the team folder. sync_settingFilesSyncSettingArg <optional>
Sync setting to apply to the team folder itself. Only meaningful if the team folder is not a shared team root. content_sync_settingsArray.<FilesContentSyncSettingArg> <optional>
Sync settings to apply to contents of this team folder. -
TeamTeamFolderUpdateSyncSettingsError
-
Type:
- Object
Properties:
Name Type Argument Description access_errorTeamTeamFolderAccessError <optional>
Available if .tag is access_error. status_errorTeamTeamFolderInvalidStatusError <optional>
Available if .tag is status_error. team_shared_dropbox_errorTeamTeamFolderTeamSharedDropboxError <optional>
- Available if .tag is team_shared_dropbox_error. sync_settings_errorFilesSyncSettingsError <optional>
Available if .tag is sync_settings_error. An error occurred setting the sync settings. .tag'access_error' | 'status_error' | 'team_shared_dropbox_error' | 'other' | 'sync_settings_error' Tag identifying the union variant. -
TeamTeamGetInfoResult
-
Type:
- Object
Properties:
Name Type Description namestring The name of the team. team_idstring The ID of the team. num_licensed_usersnumber The number of licenses available to the team. num_provisioned_usersnumber The number of accounts that have been invited or are already active members of the team. num_used_licensesnumber The number of licenses used on the team. policiesTeamPoliciesTeamMemberPolicies -
TeamTeamMemberInfo
-
Information about a team member.
Type:
- Object
Properties:
Name Type Description profileTeamTeamMemberProfile Profile of a user as a member of a team. roleTeamAdminTier The user's role in the team. -
TeamTeamMemberInfoV2
-
Information about a team member.
Type:
- Object
Properties:
Name Type Argument Description profileTeamTeamMemberProfile Profile of a user as a member of a team. rolesArray.<TeamTeamMemberRole> <optional>
The user's roles in the team. -
TeamTeamMemberInfoV2Result
-
Information about a team member, after the change, like at members/set_profile:2.
Type:
- Object
Properties:
Name Type Description member_infoTeamTeamMemberInfoV2 Member info, after the change. -
TeamTeamMemberProfile
-
Profile of a user as a member of a team.
Type:
- Object
Properties:
Name Type Argument Description team_member_idstring ID of user as a member of a team. emailstring Email address of user. email_verifiedboolean Is true if the user's email is verified to be owned by the user. statusTeamTeamMemberStatus The user's status as a member of a specific team. nameUsersName Representations for a person's name. membership_typeTeamTeamMembershipType The user's membership type: full (normal team member) vs limited (does not use a license; no access to the team's shared quota). groupsArray.<Object> List of group IDs of groups that the user belongs to. member_folder_idstring The namespace id of the user's root folder. external_idstring <optional>
External ID that a team can attach to the user. An application using the API may find it easier to use their own IDs instead of Dropbox IDs like account_id or team_member_id. account_idstring <optional>
A user's account identifier. secondary_emailsArray.<SecondaryEmailsSecondaryEmail> <optional>
Secondary emails of a user. invited_onTimestamp <optional>
The date and time the user was invited to the team (contains value only when the member's status matches TeamMemberStatus.invited). joined_onTimestamp <optional>
The date and time the user joined as a member of a specific team. suspended_onTimestamp <optional>
The date and time the user was suspended from the team (contains value only when the member's status matches TeamMemberStatus.suspended). persistent_idstring <optional>
Persistent ID that a team can attach to the user. The persistent ID is unique ID to be used for SAML authentication. is_directory_restrictedboolean <optional>
Whether the user is a directory restricted user. profile_photo_urlstring <optional>
URL for the photo representing the user, if one is set. -
TeamTeamMemberRole
-
A role which can be attached to a team member. This replaces AdminTier; each AdminTier corresponds to a new TeamMemberRole with a matching name.
Type:
- Object
Properties:
Name Type Description role_idstring A string containing encoded role ID. For roles defined by Dropbox, this is the same across all teams. namestring The role display name. descriptionstring Role description. Describes which permissions come with this role. -
TeamTeamMembershipType
-
Type:
- Object
Properties:
Name Type Description .tag'full' | 'limited' Tag identifying the union variant. -
TeamTeamMemberStatus
-
The user's status as a member of a specific team.
Type:
- Object
Properties:
Name Type Argument Description removedTeamRemovedStatus <optional>
Available if .tag is removed. User is no longer a member of the team. Removed users are only listed when include_removed is true in members/list. .tag'active' | 'invited' | 'suspended' | 'removed' Tag identifying the union variant. -
TeamTeamNamespacesListArg
-
Type:
- Object
Properties:
Name Type Description limitnumber Specifying a value here has no effect. -
TeamTeamNamespacesListContinueArg
-
Type:
- Object
Properties:
Name Type Description cursorstring Indicates from what point to get the next set of team-accessible namespaces. -
TeamTeamNamespacesListContinueError
-
Type:
- Object
Properties:
Name Type Description .tag'invalid_arg' | 'other' | 'invalid_cursor' Tag identifying the union variant. -
TeamTeamNamespacesListError
-
Type:
- Object
Properties:
Name Type Description .tag'invalid_arg' | 'other' Tag identifying the union variant. -
TeamTeamNamespacesListResult
-
Result for namespaces/list.
Type:
- Object
Properties:
Name Type Description namespacesArray.<TeamNamespaceMetadata> List of all namespaces the team can access. cursorstring Pass the cursor into namespaces/list/continue to obtain additional namespaces. Note that duplicate namespaces may be returned. has_moreboolean Is true if there are additional namespaces that have not been returned yet. -
TeamTeamReportFailureReason
-
Type:
- Object
Properties:
Name Type Description .tag'temporary_error' | 'many_reports_at_once' | 'too_much_data' | 'other' Tag identifying the union variant. -
TeamTokenGetAuthenticatedAdminError
-
Error returned by token/get_authenticated_admin.
Type:
- Object
Properties:
Name Type Description .tag'mapping_not_found' | 'admin_not_active' | 'other' Tag identifying the union variant. -
TeamTokenGetAuthenticatedAdminResult
-
Results for token/get_authenticated_admin.
Type:
- Object
Properties:
Name Type Description admin_profileTeamTeamMemberProfile The admin who authorized the token. -
TeamUploadApiRateLimitValue
-
The value for Feature.upload_api_rate_limit.
Type:
- Object
Properties:
Name Type Argument Description limitnumber <optional>
Available if .tag is limit. The number of upload API calls allowed per month. .tag'unlimited' | 'limit' | 'other' Tag identifying the union variant. -
TeamUserAddResult
-
Result of trying to add secondary emails to a user. 'success' is the only value indicating that a user was successfully retrieved for adding secondary emails. The other values explain the type of error that occurred, and include the user for which the error occurred.
Type:
- Object
Properties:
Name Type Argument Description successTeamUserSecondaryEmailsResult <optional>
Available if .tag is success. Describes a user and the results for each attempt to add a secondary email. invalid_userTeamUserSelectorArg <optional>
Available if .tag is invalid_user. Specified user is not a valid target for adding secondary emails. unverifiedTeamUserSelectorArg <optional>
Available if .tag is unverified. Secondary emails can only be added to verified users. placeholder_userTeamUserSelectorArg <optional>
Available if .tag is placeholder_user. Secondary emails cannot be added to placeholder users. .tag'success' | 'invalid_user' | 'unverified' | 'placeholder_user' | 'other' Tag identifying the union variant. -
TeamUserCustomQuotaArg
-
User and their required custom quota in GB (1 TB = 1024 GB).
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg quota_gbnumber -
TeamUserCustomQuotaResult
-
User and their custom quota in GB (1 TB = 1024 GB). No quota returns if the user has no custom quota set.
Type:
- Object
Properties:
Name Type Argument Description userTeamUserSelectorArg quota_gbnumber <optional>
-
TeamUserDeleteEmailsResult
-
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg resultsArray.<TeamDeleteSecondaryEmailResult> -
TeamUserDeleteResult
-
Result of trying to delete a user's secondary emails. 'success' is the only value indicating that a user was successfully retrieved for deleting secondary emails. The other values explain the type of error that occurred, and include the user for which the error occurred.
Type:
- Object
Properties:
Name Type Argument Description successTeamUserDeleteEmailsResult <optional>
Available if .tag is success. Describes a user and the results for each attempt to delete a secondary email. invalid_userTeamUserSelectorArg <optional>
Available if .tag is invalid_user. Specified user is not a valid target for deleting secondary emails. .tag'success' | 'invalid_user' | 'other' Tag identifying the union variant. -
TeamUserResendEmailsResult
-
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg resultsArray.<TeamResendSecondaryEmailResult> -
TeamUserResendResult
-
Result of trying to resend verification emails to a user. 'success' is the only value indicating that a user was successfully retrieved for sending verification emails. The other values explain the type of error that occurred, and include the user for which the error occurred.
Type:
- Object
Properties:
Name Type Argument Description successTeamUserResendEmailsResult <optional>
Available if .tag is success. Describes a user and the results for each attempt to resend verification emails. invalid_userTeamUserSelectorArg <optional>
Available if .tag is invalid_user. Specified user is not a valid target for resending verification emails. .tag'success' | 'invalid_user' | 'other' Tag identifying the union variant. -
TeamUserSecondaryEmailsArg
-
User and a list of secondary emails.
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg secondary_emailsArray.<Object> -
TeamUserSecondaryEmailsResult
-
Type:
- Object
Properties:
Name Type Description userTeamUserSelectorArg resultsArray.<TeamAddSecondaryEmailResult> -
TeamUserSelectorArg
-
Argument for selecting a single user, either by team_member_id, external_id or email.
Type:
- Object
Properties:
Name Type Argument Description team_member_idstring <optional>
Available if .tag is team_member_id. external_idstring <optional>
Available if .tag is external_id. emailstring <optional>
Available if .tag is email. .tag'team_member_id' | 'external_id' | 'email' Tag identifying the union variant. -
TeamUserSelectorError
-
Error that can be returned whenever a struct derived from UserSelectorArg is used.
Type:
- Object
Properties:
Name Type Description .tag'user_not_found' Tag identifying the union variant. -
TeamUsersSelectorArg
-
Argument for selecting a list of users, either by team_member_ids, external_ids or emails.
Type:
- Object
Properties:
Name Type Argument Description team_member_idsArray.<Object> <optional>
Available if .tag is team_member_ids. List of member IDs. external_idsArray.<Object> <optional>
Available if .tag is external_ids. List of external user IDs. emailsArray.<Object> <optional>
Available if .tag is emails. List of email addresses. .tag'team_member_ids' | 'external_ids' | 'emails' Tag identifying the union variant. -
Timestamp
-
Type:
- string
-
UserMessage
-
User-friendly error message.
Type:
- Object
Properties:
Name Type Description textstring The message. localestring -
UsersAccount
-
The amount of detail revealed about an account depends on the user being queried and the user making the query.
Type:
- Object
Properties:
Name Type Argument Description account_idstring The user's unique Dropbox ID. nameUsersName Details of a user's name. emailstring The user's email address. Do not rely on this without checking the email_verified field. Even then, it's possible that the user has since lost access to their email. email_verifiedboolean Whether the user has verified their email address. disabledboolean Whether the user has been disabled. profile_photo_urlstring <optional>
URL for the photo representing the user, if one is set. -
UsersBasicAccount
-
Basic information about any account.
Type:
- Object
Properties:
Name Type Argument Description account_idstring The user's unique Dropbox ID. nameUsersName Details of a user's name. emailstring The user's email address. Do not rely on this without checking the email_verified field. Even then, it's possible that the user has since lost access to their email. email_verifiedboolean Whether the user has verified their email address. disabledboolean Whether the user has been disabled. is_teammateboolean Whether this user is a teammate of the current user. If this account is the current user's account, then this will be true. profile_photo_urlstring <optional>
URL for the photo representing the user, if one is set. team_member_idstring <optional>
The user's unique team member id. This field will only be present if the user is part of a team and is_teammate is true. -
UsersCommonAccountType
-
What type of account this user has.
Type:
- Object
Properties:
Name Type Description .tag'basic' | 'pro' | 'business' Tag identifying the union variant. -
UsersFileLockingValue
-
The value for UserFeature.file_locking.
Type:
- Object
Properties:
Name Type Argument Description enabledboolean <optional>
Available if .tag is enabled. When this value is True, the user can lock files in shared directories. When the value is False the user can unlock the files they have locked or request to unlock files locked by others. .tag'enabled' | 'other' Tag identifying the union variant. -
UsersFullAccount
-
Detailed information about the current user's account.
Type:
- Object
Properties:
Name Type Argument Description account_idstring The user's unique Dropbox ID. nameUsersName Details of a user's name. emailstring The user's email address. Do not rely on this without checking the email_verified field. Even then, it's possible that the user has since lost access to their email. email_verifiedboolean Whether the user has verified their email address. disabledboolean Whether the user has been disabled. localestring The language that the user specified. Locale tags will be IETF language tags http://en.wikipedia.org/wiki/IETF_language_tag. referral_linkstring The user's referral link https://www.dropbox.com/referrals. is_pairedboolean Whether the user has a personal and work account. If the current account is personal, then team will always be null, but is_paired will indicate if a work account is linked. account_typeUsersCommonAccountType What type of account this user has. root_infoCommonTeamRootInfo | CommonUserRootInfo | CommonRootInfo - The root info for this account. profile_photo_urlstring <optional>
URL for the photo representing the user, if one is set. countrystring <optional>
The user's two-letter country code, if available. Country codes are based on ISO 3166-1 http://en.wikipedia.org/wiki/ISO_3166-1. teamUsersFullTeam <optional>
If this account is a member of a team, information about that team. team_member_idstring <optional>
This account's unique team member id. This field will only be present if team is present. -
UsersFullTeam
-
Detailed information about a team.
Type:
- Object
Properties:
Name Type Description idstring The team's unique ID. namestring The name of the team. sharing_policiesTeamPoliciesTeamSharingPolicies Team policies governing sharing. office_addin_policyTeamPoliciesOfficeAddInPolicy Team policy governing the use of the Office Add-In. -
UsersGetAccountArg
-
Type:
- Object
Properties:
Name Type Description account_idstring A user's account identifier. -
UsersGetAccountBatchArg
-
Type:
- Object
Properties:
Name Type Description account_idsArray.<Object> List of user account identifiers. Should not contain any duplicate account IDs. -
UsersGetAccountBatchError
-
Type:
- Object
Properties:
Name Type Argument Description no_accountstring <optional>
Available if .tag is no_account. The value is an account ID specified in :field:`GetAccountBatchArg.account_ids` that does not exist. .tag'no_account' | 'other' Tag identifying the union variant. -
UsersGetAccountError
-
Type:
- Object
Properties:
Name Type Description .tag'no_account' | 'other' Tag identifying the union variant. -
UsersIndividualSpaceAllocation
-
Type:
- Object
Properties:
Name Type Description allocatednumber The total space allocated to the user's account (bytes). -
UsersName
-
Representations for a person's name to assist with internationalization.
Type:
- Object
Properties:
Name Type Description given_namestring Also known as a first name. surnamestring Also known as a last name or family name. familiar_namestring Locale-dependent name. In the US, a person's familiar name is their given_name, but elsewhere, it could be any combination of a person's given_name and surname. display_namestring A name that can be used directly to represent the name of a user's Dropbox account. abbreviated_namestring An abbreviated form of the person's name. Their initials in most locales. -
UsersPaperAsFilesValue
-
The value for UserFeature.paper_as_files.
Type:
- Object
Properties:
Name Type Argument Description enabledboolean <optional>
Available if .tag is enabled. When this value is true, the user's Paper docs are accessible in Dropbox with the .paper extension and must be accessed via the /files endpoints. When this value is false, the user's Paper docs are stored separate from Dropbox files and folders and should be accessed via the /paper endpoints. .tag'enabled' | 'other' Tag identifying the union variant. -
UsersSpaceAllocation
-
Space is allocated differently based on the type of account.
Type:
- Object
Properties:
Name Type Argument Description individualUsersIndividualSpaceAllocation <optional>
Available if .tag is individual. The user's space allocation applies only to their individual account. teamUsersTeamSpaceAllocation <optional>
Available if .tag is team. The user shares space with other members of their team. .tag'individual' | 'team' | 'other' Tag identifying the union variant. -
UsersSpaceUsage
-
Information about a user's space usage and quota.
Type:
- Object
Properties:
Name Type Description usednumber The user's total space usage (bytes). allocationUsersSpaceAllocation The user's space allocation. -
UsersTeam
-
Information about a team.
Type:
- Object
Properties:
Name Type Description idstring The team's unique ID. namestring The name of the team. -
UsersTeamSpaceAllocation
-
Type:
- Object
Properties:
Name Type Description usednumber The total space currently used by the user's team (bytes). allocatednumber The total space allocated to the user's team (bytes). user_within_team_space_allocatednumber The total space allocated to the user within its team allocated space (0 means that no restriction is imposed on the user's quota within its team). user_within_team_space_limit_typeTeamCommonMemberSpaceLimitType - The type of the space limit imposed on the team member (off, alert_only, stop_sync). user_within_team_space_used_cachednumber An accurate cached calculation of a team member's total space usage (bytes). -
UsersUserFeature
-
A set of features that a Dropbox User account may have configured.
Type:
- Object
Properties:
Name Type Description .tag'paper_as_files' | 'file_locking' | 'other' Tag identifying the union variant. -
UsersUserFeaturesGetValuesBatchArg
-
Type:
- Object
Properties:
Name Type Description featuresArray.<UsersUserFeature> A list of features in UserFeature. If the list is empty, this route will return UserFeaturesGetValuesBatchError. -
UsersUserFeaturesGetValuesBatchError
-
Type:
- Object
Properties:
Name Type Description .tag'empty_features_list' | 'other' Tag identifying the union variant. -
UsersUserFeaturesGetValuesBatchResult
-
Type:
- Object
Properties:
Name Type Description valuesArray.<UsersUserFeatureValue> -
UsersUserFeatureValue
-
Values that correspond to entries in UserFeature.
Type:
- Object
Properties:
Name Type Argument Description paper_as_filesUsersPaperAsFilesValue <optional>
Available if .tag is paper_as_files. file_lockingUsersFileLockingValue <optional>
Available if .tag is file_locking. .tag'paper_as_files' | 'file_locking' | 'other' Tag identifying the union variant.