Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
sukantasaha24
7 years agoExplorer | Level 3
How can I get the Owner name of a file that is shared with me using file id or preview url
How can I get the Owner name or email of a file that is shared with me using file id or file preview url.
I am using .Net SDK.
Thanks
7 Replies
- Greg-DB7 years ago
Dropbox Community Moderator
This depends on what kind of sharing you're referring to.
If the file is in a shared folder that you are a member of, you can use the ListFolderMembersAsync and ListFolderMembersContinueAsync methods to get the list of members, and check which one is the owner.
If the file has been individually shared with you, you can use GetFileMetadataAsync to get the metadata for the shared file, including the OwnerDisplayNames if available.
If you have a shared link for a file, you can use GetSharedLinkMetadataAsync to get the metadata for the shared link, including TeamMemberInfo, if the links owner's is a member of the same team.
- sukantasaha247 years agoExplorer | Level 3
Hi,
Thanks for quick response.
In my case file has been individually shared with me,
when I am trying to get the metadata of the file using GetFileMetadataAsync and file id as a parameter to get the metadata of the shared file why OwnerDisplayNames is null?
Code :
var FileMetaData = await dc_Member.Sharing.GetFileMetadataAsync(SharedFile.Id);
- Greg-DB7 years ago
Dropbox Community Moderator
Unfortunately, the OwnerDisplayNames value can't always be fetched, though I don't have more specific information to share on when/why that is the case. I'll send this along to the team to ask to get this better documented though.
- swively4 years agoExplorer | Level 3
@Greg-DB
Did you ever get clarification on why the OwnerDisplayNames field can't always be fetched? - Greg-DB4 years ago
Dropbox Community Moderator
swively No, unfortunately I don't have any updated guidance/documentation on that.
- swively4 years agoExplorer | Level 3
@Gred-DB
Is there any way to determine who owns/uploaded a file via the api? The best I can find is the owner of the shared folder, but I'm wondering if there is a way to see who uploaded a specific file. - Greg-DB4 years ago
Dropbox Community Moderator
swively Shared folders themselves have owners (see earlier in the thread), but individual files inside shared folders do not. You can see you last uploaded a file (i.e., the latest version of a file) via FileMetadata.sharing_info.modified_by though, e.g., as returned by /2/files/list_folder[/continue] or /2/files/get_metadata (or corresponding native methods in an SDK). You can also check the revision history for a particular file via /2/files/list_revisions.
About Discuss Dropbox Developer & API
Make connections with other developers
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
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, Facebook or Instagram.
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!