Skip to main content

How To Automatically Upload a Zoho File Attachment to Dropbox from Zoho Creator using Dropbox API v2 and Zoho postUrl

I'm an idiot, so this took about 6 hours for me to figure out, but apparently many people have not been able to figure this out, and I could not find a complete and working solution online anywhere.

If you want to be able to upload a file to Dropbox from Zoho Creator, you have to create a custom function like below (here I called the function "Dropbox", under namespace "Create"). In the function, the ID is being passed to it from the underlying form entry.

void Create.Dropbox(int id)
{
url = "https://api.dropboxapi.com/2/files/save_url";
headers = {"Authorization":"Bearer XXXXX","Content-Type":"application/json"};
data = {"path":"/FFFF/TTTT.XXX","url":"YYYY"};
datastring = data.toString();
response = postUrl(url,datastring,headers,false);
}


... where XXXXX is your secret Dropbox Token, and YYYY is the url of the file you are uploading, and FFFF is the Dropbox folder to which the file is being uploaded, TTTT is the desired filename, and XXX is the desired extension.

This uses v2 of the Dropbox API. You can get your Dropbox token and use the very helpful Dropbox API  Explorer here:

https://dropbox.github.io/dropbox-api-v2-explorer/#files_save_url

The key thing that was difficult to figure out and is not well documented is that the function toString() is necessary because Dropbox is expecting JSON and although the variable "data" above looks like JSON, it is not.

Comments

Popular posts from this blog

Dr. Alex Mohseni invited to speak at Brault’s Healthcare Leadership Forum about the future of Emergency Medicine services and how ED groups can adapt using telemedicine.

  Dr. Mohseni presented on the topic of how Emergency Medicine groups could expand their scope of practice to the virtual space to and how to do so in a financially viable way.

Information about Medicare Advantage plans, coverage and benefits

Information about Medicare Advantage plans, coverage and benefits is available on this website, Medicare Advantage Information . Some topics covered include: additional benefits for medicare additional medicare benefits medicare advantage blue medicare advantage blue cross medicare advantage blue cross blue shield advantage c medicare advantage care plan medicare advantage cost medicare advantage d medicare advantage dental plan medicare advantage health care plans medicare advantage health plan medicare advantage insurance medicare advantage insurance plans medicare advantage of medicare advantage plan advantage of plan advantage plan insurance advantage plans with dental advantage policy advantages of medicare advantage advantages of medicare for all advantages of original medicare benefit medicare

How to connect openai to zapier to twilio so that you can interface with GPT3 via SMS

 I created an SMS interface to openAI's gpt3 API so that I can send an SMS prompt to openai and get an SMS response. Result looks like this: There may be better/easier ways of doing this, but this is how I figured it out. I'm assuming some degree of familiarity w/ Zapier here: 1. Buy a phone number in Twilio to use for this. This only costs $1/mo 2. In Zapier, create a new zap where the trigger is "Webhooks by Zapier" (Premium option). Choose your event as "Catch Hook". This will generate a webhook URL that is custom for this workflow. We are doing this because when you send the SMS to the Twilio phone number, you want it to **instantly** trigger the zapier workflow and not wait the 5-15 min it takes for Twilio to trigger on its own, so for that you need the webhook: 3. Copy the webhook URL from zapier and paste it into Twilio in the "A Messages Comes In" webhook section for that phone number 4. You will then need to send a test message so that Zap...