DB-Des Dropboxer

Comments

  • Hi @"schmidtc63" I'm happy to hear you were able to figure this out! If you have any further technical questions, let us know. We're here to help!
  • @"Oren Shani", Organizing members into groups will not provide the ability to set quotas nor monitor these either. Setting quotas can only be done at the user level.
  • Hi @"Oren Shani", It's not possible to access multiple managed teams via a single, enterprise-level API key. The API is designed to operate at the individual team level, meaning you can only retrieve information such as quota and usage data for one team at a time — as you have already discovered. That said, I'll pass this…
  • Hi @"오부경", I'll be happy to help with any issues you're having with the Dropbox API, but I'll need some more information. Please reply with: * the name and version number of the platform and SDK/library you are using, if any * relevant code snippet(s), but don't include any access or refresh token(s) * the full text of any…
  • Hi @"alekso89" Since we’ve confirmed that other URLs are saving without issues using the /2/files/save_url endpoint, the issue is most likely related to the third-party hosting service you're trying to save the file from (filestackcontent.com). We recommend reaching out to that provider for further support—they should be…
  • Hi @"bbergeron" The method 'sharingCreateSharedLink()' uses a deprecated endpoint. To avoid any further errors or unexpected behavior, we would recommend migrating to using the latest endpoint /2/sharing/create_shared_link_with_settings — the corresponding method in the Node SDK would be:…
  • Hi @"codeAndchill" A 'missing_scope' error indicates that while the app is permitted to use that scope, the particular access token you're using to make the API call does not have that scope granted. Also, be aware that just adding a scope to your app via the App Console does not retroactively grant that scope to existing…
  • Hi @"timcase" In order to help identify the cause of the problem, have the user encountering the issues try the following steps in order, and let us know if any of them resolve the issue: * Open a private browsing/incognito window: Cached data and cookies can sometimes cause issues. Opening a private window should resolve…
  • Hi @"pablo314" In order to further assist, could you please share the full text of the error you are seeing? Also, could you clarify where/how you are obtaining the access token that you are being asked to enter?
  • Hi @"codeAndchill" There are a few reasons you may not be seeing webhook notifications: * Have you "linked" or "connected" or "authorized" the app to your account, before making the file changes? Webhook notifications will only be sent for changes in accounts that are connected to the app. When you create a Dropbox API app…
  • Hi @"InfiAdmin" I see you asked this question here: https://www.dropboxforum.com/discussions/101000014/retrieve-list-of-users-via-dropbox-c-dll/837531 We can continue the conversation there.
  • @"InfiAdmin" In order to get a refresh token, you will need to request "offline" access. Refresh tokens do not expire automatically and can be used repeatedly. You can find more information in the OAuth Guide and authorization documentation. There's a basic outline of processing this flow in this blog post which may serve…
  • @"alekso89" Thanks for your patience while we took a closer look at your report. As a next step, we would recommend including the 'include_property_groups' parameter in the request to /2/files/get_metadata. This will help confirm if there if there is a property group set on that file and what the values are.
  • Hi @"alekso89" Thanks for the report! We're investigating this API issue. We'll follow up here once we have an update.
  • Hi @"bbergeron" I'll be happy to help with any issues you're having with the Dropbox API, but I'll need some more information. Please reply with: * the steps to reproduce the issue, including relevant code snippet(s), but don't include any access or refresh token(s) * the full text of any error or unexpected output * 5-10…
  • Hi @"icebeartellsnolies" A 'missing_scope' error indicates that while the app is permitted to use that scope, the particular access token you're using to make the API call does not have that scope granted. Please note that just adding a scope to your app via the App Console does not retroactively grant that scope to…
  • Hi @"InfiAdmin" To list all users in your Dropbox Business account using the .NET SDK, you'll want to use the 'Team.MembersListV2Async()' method from the 'DropboxTeamClient' class. This corresponds to the /2/team/members/list_v2 endpoint and allows you to retrieve a list of all team members. In order to paginate through…
  • @"alphasense-productintegrations" My apologies, it appears as though the Dropbox API doesn't actually offer a way to download shared Paper docs directly, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
  • @"alphasense-productintegrations" To further clarify: What value are you passing as the "path" when sending a request to /2/files/export? Keep in mind that how you access Paper docs (which endpoints to use) depends on your version of Paper. You can find more details on the Paper Migration Guide. More specifically,…
  • Hi @"alphasense-productintegrations" I'll be happy to help with any issues you're having with the Dropbox API, but I'll need some more information. Please reply with: * the steps to reproduce the issue, including relevant code snippet(s), but don't include any access or refresh token(s) * the full text of any error or…
  • Hi @"jyoung0950", As Rich mentioned, you will need to create an API app in order to obtain an API key. With that key you will be able to interact with the Dropbox API. You can find everything you need to get started with the Dropbox API, including documentation, tutorials, and SDKs here: https://www.dropbox.com/developers
    in Api key Comment by DB-Des June 2025
  • Hi @"dcam", Could you please share the error message that accompanies the 409 code?
  • Hi @"dcam", Could you provide a little more information? Such as: - the name and version number of the platform and SDK/library you are using, if any - the steps to reproduce the issue, including relevant code snippet(s), but don't include any access or refresh token(s) - the full text of any error or unexpected output
  • Hi @"alekso89" I forgot to add, since you are working with a team, by default, API calls to the Dropbox API operate in the "member folder" of the connected account, not the "team space". That means that by default, the contents of the team space will not be found. You can configure API calls to operate in the "team space"…
  • Hi @"alekso89", Dropbox does offer an API you can use for listing, uploading, and downloading files, among other operations. You can find everything you need to get started with the Dropbox API, including documentation, tutorials, and SDKs here: https://www.dropbox.com/developers For your specific enquiries: * Endpoints…
  • Hi @"ouma", It sounds like you’re experiencing an issue with a third party application. Please reach out to the support organization for make.com for help. If the developers of this app are having any trouble with the Dropbox API itself, they can reach out to Dropbox developer support directly with the relevant technical…
  • Hi @"M Arslan", Just to clarify, by default, API calls to the Dropbox API operate in the "member folder" of the connected account, not the "team space". You can configure API calls to operate in the "team space" instead though, in order to interact with files/folders in the team space. To do so, you'll need to set the…
  • @"Omri1984" In order to get the user's features values, you'll need to first create an instance of the parameter "paper_as_files": UserFeature.PaperAsFiles paperAsFiles = UserFeature.PaperAsFiles.Instance; You can then add the new instance of this parameter to a list of 'UserFeature': var featuresList = new…
  • @"Omri1984" Yes, Paper endpoints (though deprecated) can still be accessed using the .NET SDK. You can find documentation on these here: https://dropbox.github.io/dropbox-sdk-dotnet/gh-pages/obj/api/Dropbox.Api.Paper.html.
  • Hi @"Omri1984", Paper docs can still be accessed via the API, which endpoints to use depend on your version of Paper. You can find more details on the Paper Migration Guide.