Programmatically create upload presets (video tutorial)
Last updated: Apr-02-2025
On this page:
Overview
In this tutorial, we'll show you how to programmatically create and use Cloudinary's signed upload presets.
Video tutorial
This video is brought to you by Cloudinary's video player - embed your own!
Tutorial contents
This tutorial presents the following topics. Click a timestamp to jump to that part of the video.
What is an upload preset?
Upload presets let you add many parameters to your upload calls and use them all at once. |
Some use cases
With Cloudinary's APIs, you can create dozens of upload presets for different use cases, like: removing the background from an image, flagging a file for content moderation, or simply making sure your asset makes its way into the right folder. Check out more use cases in our Upload presets and Upload API documentation. |
Signed vs. unsigned presets
At Cloudinary, presets can be signed or unsigned. Unsigned presets are used with unsigned upload calls. For example, when uploading directly from the browser on the frontend. In this tutorial we focus entirely on signed presets on the backend. You can find more information on the difference between signed and unsigned presets in our Upload presets documentation. |
Setting up development environment
If this is your first time setting up your development environment with Cloudinary, we recommend watching our Upload Programmatically tutorial. It will also walk you through how to make your first upload. |
Clone the repository we use in this tutorial to follow along
It may be helpful to clone the repo we've created for this demo. |
Ensure script libraries are installed
Make sure all of our script's libraries are properly installed with a simple npm i command. If you open your package.json file, you can see all of the packages have been listed as dependencies. |
|
Create a basic upload preset script
Our first example script uses Cloudinary's Admin API to create a basic upload preset. We'll use that to upload an image to our product environment, with instructions on how to store it and actions to carry out as part of the upload process. |
Run script to create upload preset
Run node create-upload-preset.js to officially create our first upload preset! |
Upload file with our preset
Upload the asset to Cloudinary with our newly created upload preset called winter-baby. |
Create new preset with a simple transformation
We apply the same techniques shown in the earlier example, but with transformations. This will transform the original file and only keep the transformed asset in our Cloudinary product environment. |
Run script to create another upload preset
Run create-derived-image-preset.js to create another upload preset! |
Upload file with our preset
Upload the asset to Cloudinary with our newly created upload preset called profile-preset. |
Keep learning
Related topics
- Learn more about upload presets in the Media Upload guide.
- Take a look at the User-generated content guide to see all the features you can take advantage of when uploading images and videos to display on your site.
- Dive deep into more options with upload presets in our Fundamentals for Developers course, such as eager and incoming transformations.
If you like this, you might also like...
Check out the Cloudinary Academy for free self-paced Cloudinary courses on a variety of developer or DAM topics, or register for formal instructor-led courses, either virtual or on-site.
✖️