Dropbox

Links

    Dropbox API

    Getting access, Developing, Testing

    Back to Dropbox

    Users - Get Account

    Get information about a user's account.

    Input

    type: object properties: data: type: object description: | account_id: A user's account identifier. properties: account_id: type: string description: A user's account identifier. title: Data

    Output

    type: object description: > Basic information about any account. account_id: The user's unique Dropbox ID. name: Details of a user's name. email: The user's e-mail address. Do not rely on this without checking the :field:`email_verified` field. Even then, it's possible that the user has since lost access to their e-mail. email_verified: Whether the user has verified their e-mail address. disabled: Whether the user has been disabled. is_teammate: Whether this user is a teammate of the current user. If this account is the current user's account, then this will be :val:`true`. profile_photo_url: URL for the photo representing the user, if one is set. team_member_id: The user's unique team member id. This field will only be present if the user is part of a team and :field:`is_teammate` is :val:`true`. properties: account_id: type: string description: The user's unique Dropbox ID. is_teammate: type: boolean description: >- Whether this user is a teammate of the current user. If this account is the current user's account, then this will be :val:`true`. email_verified: type: boolean description: Whether the user has verified their e-mail address. team_member_id: type: string description: >- The user's unique team member id. This field will only be present if the user is part of a team and :field:`is_teammate` is :val:`true`. disabled: type: boolean description: Whether the user has been disabled. email: type: string description: >- The user's e-mail address. Do not rely on this without checking the :field:`email_verified` field. Even then, it's possible that the user has since lost access to their e-mail. profile_photo_url: type: string description: URL for the photo representing the user, if one is set. name: type: object description: > Representations for a person's name to assist with internationalization. given_name: Also known as a first name. surname: Also known as a last name or family name. familiar_name: Locale-dependent name. In the US, a person's familiar name is their :field:`given_name`, but elsewhere, it could be any combination of a person's :field:`given_name` and :field:`surname`. display_name: A name that can be used directly to represent the name of a user's Dropbox account. abbreviated_name: An abbreviated form of the person's name. Their initials in most locales. properties: familiar_name: type: string description: >- Locale-dependent name. In the US, a person's familiar name is their :field:`given_name`, but elsewhere, it could be any combination of a person's :field:`given_name` and :field:`surname`. surname: type: string description: Also known as a last name or family name. display_name: type: string description: >- A name that can be used directly to represent the name of a user's Dropbox account. given_name: type: string description: Also known as a first name. abbreviated_name: type: string description: >- An abbreviated form of the person's name. Their initials in most locales.