We're making changes to the Community, so you may have received some notifications - thanks for your patience and welcome back. Learn more here.

Forum Discussion

JohnAdam_CUNY's avatar
JohnAdam_CUNY
Helpful | Level 6
8 months ago

Python SDK dbx_team.team_members_get_info_v2 need to list EMPLID, PERSISTENT ID, EXTERNAL ID,, etc.

Python SDK for Dropbox:   I am able to get the team member id but I also need to list given name, surname, external id, persistent id, and email.   See below code sample.   For results I get cl...
  • Greg-DB's avatar
    Greg-DB
    8 months ago

    The following all work for me:

    print(info.get_member_info().profile.name)
    print(info.get_member_info().profile.name.given_name)
    print(info.get_member_info().profile.name.surname)
    print(info.get_member_info().profile.name.display_name)

    Note though that the values won't be set if the account doesn't have a name set yet (e.g., if it's a new invite).

     

    If something isn't working correctly for you, feel free to share the code you're running and the full error/output you get.

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,875 PostsLatest Activity: 2 months ago
325 Following

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!