We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
journeymigration
2 years agoHelpful | Level 5
How to update shared folder link access from edit to view
I've successfully created a backend service to update shared folder member access to view only; however, the the shared folder link is still set to Edit access. I thought using the https://api.dropbo...
- 2 years ago
Whether or not you need to revoke the edit link will depend on your use case; it's not required for creating a view link. To revoke a link you'd use /2/sharing/revoke_shared_link. Whether or not you do revoke the edit link, you can create the view link using /2/sharing/create_shared_link_with_settings.
journeymigration
Helpful | Level 5
So in effect, would I remove the share link and then use the API to create a view link and that'd effectively do the same thing?
Greg-DB
2 years agoDropbox Staff
Whether or not you need to revoke the edit link will depend on your use case; it's not required for creating a view link. To revoke a link you'd use /2/sharing/revoke_shared_link. Whether or not you do revoke the edit link, you can create the view link using /2/sharing/create_shared_link_with_settings.
- journeymigration2 years agoHelpful | Level 5
Here's how I'm revoking and then creating the link in a Console application:
await client.Sharing.RevokeSharedLinkAsync(url); SharedLinkSettings settings = new SharedLinkSettings(access: RequestedLinkAccessLevel.Viewer.Instance); await client.Sharing.CreateSharedLinkWithSettingsAsync(sharedFolderPath,settings);
This appears to work on my end, thank you.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 12 months agoIf 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!