<?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 Automating Sending Email With Link to client files.. in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/204438#M9827</link>
    <description>&lt;P&gt;My business needs to email our clients and within the email provide a read only link to their file in Dropbox. I know the manual way to do the shared link, but we need a way to automate the process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The way I want to automate it, would require a naming convention for the DropBox file that my code could know in advance. But when looking at how Dropbox names each file it appears they create uniqueid's.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way for me to do this? Thx in advance for any help!.&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:26:20 GMT</pubDate>
    <dc:creator>jimmythemic</dc:creator>
    <dc:date>2019-05-29T09:26:20Z</dc:date>
    <item>
      <title>Automating Sending Email With Link to client files..</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/204438#M9827</link>
      <description>&lt;P&gt;My business needs to email our clients and within the email provide a read only link to their file in Dropbox. I know the manual way to do the shared link, but we need a way to automate the process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The way I want to automate it, would require a naming convention for the DropBox file that my code could know in advance. But when looking at how Dropbox names each file it appears they create uniqueid's.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way for me to do this? Thx in advance for any help!.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:26:20 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/204438#M9827</guid>
      <dc:creator>jimmythemic</dc:creator>
      <dc:date>2019-05-29T09:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: Automating Sending Email With Link to client files..</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/204479#M9834</link>
      <description>&lt;P&gt;To&amp;nbsp;this using the&amp;nbsp;Dropbox API, you can use &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_self"&gt;/2/files/list_folder&lt;/A&gt;[&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue" target="_self"&gt;/continue&lt;/A&gt;] to retrieve the metadata, including both path and id, for existing and new files in the connected&amp;nbsp;Dropbox account.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can then use to get a shared link &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-create_shared_link_with_settings" target="_self"&gt;/2/sharing/create_shared_link_with_settings&lt;/A&gt;. The API doesn't offer a way to have&amp;nbsp;Dropbox send the email with the link itself, so you'd need to send the email from your app.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2017 18:49:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/204479#M9834</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-01-30T18:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Automating Sending Email With Link to client files..</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/204481#M9835</link>
      <description>&lt;P&gt;Greg, thank you so much for the info.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So what I am hoping I can now do is use PHP to call curl that will point me to my DropBox root folder.&amp;nbsp; Using &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_self" rel="noopener noreferrer"&gt;/2/files/list_folder&lt;/A&gt;[&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue" target="_self" rel="noopener noreferrer"&gt;/continue&lt;/A&gt;]&amp;nbsp;&lt;/P&gt;&lt;P&gt;request, I will get back all the folder names and files within those folders, loop through each returned file and using the meta data create a link with the proper URL to get me back to the client's corresponding file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So with all this info contained in the URL, I shouldn't have any authentication issues from trying to access via email instead of actually logging into DROPBOX? It assumes that if i hav all the required Id info that logging into DropBox is not necessary?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2017 19:22:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/204481#M9835</guid>
      <dc:creator>jimmythemic</dc:creator>
      <dc:date>2017-01-30T19:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Automating Sending Email With Link to client files..</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/204500#M9838</link>
      <description>I'm not sure if I've understood your last questions properly, so please let me know if I've missed anything.&lt;BR /&gt;&lt;BR /&gt;To make a call to a Dropbox API endpoint, such as /2/files/list_folder, you need an OAuth access token for the account you want to access. The Dropbox API v2 uses OAuth 2 in particular. You can find information on how this works here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/reference/oauth-guide" target="_blank"&gt;https://www.dropbox.com/developers/reference/oauth-guide&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;In short, you need to log in (or already be logged in) to the Dropbox web site once to first authorize the app to access your account. From there, you get an access token that you can store and re-use for API calls, without going through that app authorization process again.&lt;BR /&gt;&lt;BR /&gt;Also, here's a basic example of making an API call in PHP using curl:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://stackoverflow.com/documentation/dropbox-api/412/listing-a-folder/1370/listing-the-root-folder-via-curl-in-php-and-the-curl-extension#t=201701302112566040782" target="_blank"&gt;https://stackoverflow.com/documentation/dropbox-api/412/listing-a-folder/1370/listing-the-root-folder-via-curl-in-php-and-the-curl-extension#t=201701302112566040782&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Alternatively, you can use a third party library:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/communitysdks" target="_blank"&gt;https://www.dropbox.com/developers/documentation/communitysdks&lt;/A&gt;</description>
      <pubDate>Mon, 30 Jan 2017 21:14:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/204500#M9838</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-01-30T21:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: Automating Sending Email With Link to client files..</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/204506#M9839</link>
      <description>&lt;P&gt;Greg, can't thank you enough!... This is all I need (I think). I appreciate all your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Jim&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2017 22:02:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/204506#M9839</guid>
      <dc:creator>jimmythemic</dc:creator>
      <dc:date>2017-01-30T22:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Automating Sending Email With Link to client files..</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/264731#M15509</link>
      <description>&lt;P&gt;Hey Jimmy,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://collectizi.com" target="_self"&gt;Collectizi &lt;/A&gt;does that. You can automate your clients files collection, approve them, track completion and share the requests with your team if needed.&lt;/P&gt;&lt;P&gt;And you don't need to do emails anymore &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 12:02:19 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Automating-Sending-Email-With-Link-to-client-files/m-p/264731#M15509</guid>
      <dc:creator>MikeKowa</dc:creator>
      <dc:date>2018-02-13T12:02:19Z</dc:date>
    </item>
  </channel>
</rss>

