<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic I need a clean working example of CREATE FOLDER in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-need-a-clean-working-example-of-CREATE-FOLDER/m-p/277208#M16605</link>
    <description>&lt;P&gt;I tested many examples, but always get a issue about some missing parameter. For a beginer on this, like me, it became frustative. A clean example like "url-dropbox-api- functio+key+secret+token+folderToCreate" in a lite javascript function without any jquery on this. You know?: the clear way to something. Even a static example, just for testing. I´ll apreciate so much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Elias&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:13:08 GMT</pubDate>
    <dc:creator>chemical21</dc:creator>
    <dc:date>2019-05-29T09:13:08Z</dc:date>
    <item>
      <title>I need a clean working example of CREATE FOLDER</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-need-a-clean-working-example-of-CREATE-FOLDER/m-p/277208#M16605</link>
      <description>&lt;P&gt;I tested many examples, but always get a issue about some missing parameter. For a beginer on this, like me, it became frustative. A clean example like "url-dropbox-api- functio+key+secret+token+folderToCreate" in a lite javascript function without any jquery on this. You know?: the clear way to something. Even a static example, just for testing. I´ll apreciate so much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Elias&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:13:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-need-a-clean-working-example-of-CREATE-FOLDER/m-p/277208#M16605</guid>
      <dc:creator>chemical21</dc:creator>
      <dc:date>2019-05-29T09:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: I need a clean working example of CREATE FOLDER</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-need-a-clean-working-example-of-CREATE-FOLDER/m-p/277290#M16611</link>
      <description>&lt;P&gt;To use the Dropbox API via JavaScript, we recommend using &lt;A href="https://github.com/dropbox/dropbox-sdk-js" target="_self"&gt;the official Dropbox API v2 JavaScript SDK&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Creating a folder with that can be done similarly to &lt;A href="https://github.com/dropbox/dropbox-sdk-js#quickstart" target="_self"&gt;the filesListFolder example&lt;/A&gt; (which is written for Node).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It would look like this, using &lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesCreateFolderV2__anchor" target="_blank"&gt;the filesCreateFolderV2 method&lt;/A&gt;: (written for browser JavaScript, assuming the library is already loaded)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;var dbx = new Dropbox.Dropbox({ accessToken: ACCESS_TOKEN });

dbx.filesCreateFolderV2({path: '/MyFolderName'})
  .then(function(response) {
    console.log(response);
  })
  .catch(function(error) {
    console.error(error);
  });&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 May 2018 15:19:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-need-a-clean-working-example-of-CREATE-FOLDER/m-p/277290#M16611</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-05-22T15:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: I need a clean working example of CREATE FOLDER</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-need-a-clean-working-example-of-CREATE-FOLDER/m-p/367539#M20797</link>
      <description>&lt;P&gt;can we use unique parent folder id then folder name for creating folders?&lt;/P&gt;&lt;P&gt;is there any other way of creating without passing the whole path? with some unique key&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2019 10:55:34 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-need-a-clean-working-example-of-CREATE-FOLDER/m-p/367539#M20797</guid>
      <dc:creator>rajshree1996</dc:creator>
      <dc:date>2019-09-27T10:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: I need a clean working example of CREATE FOLDER</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-need-a-clean-working-example-of-CREATE-FOLDER/m-p/367597#M20799</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1211079"&gt;@rajshree1996&lt;/a&gt;&amp;nbsp;No, unfortunately the&amp;nbsp;Dropbox API doesn't currently support creating folders using paths relative to existing folder IDs,&amp;nbsp;but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It does support creating new folders relative to namespace IDs though, like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;dbx.filesCreateFolderV2({"path": "ns:123456789/new folder name"})
  .then(function(response) {
    console.log(response);
  })
  .catch(function(error) {
    console.log(error);
  });&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That only works for folders with &lt;A href="https://www.dropbox.com/developers/reference/namespace-guide" target="_self"&gt;namespace&lt;/A&gt; IDs though, e.g., shared folders.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2019 14:15:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-need-a-clean-working-example-of-CREATE-FOLDER/m-p/367597#M20799</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-09-27T14:15:42Z</dc:date>
    </item>
  </channel>
</rss>

