← Tools Reference

Cloudinary

Cloudinary integration (Design & Media, Storage). Imported from open-connector.

API key5 toolshttps://api.cloudinary.com/v1_1
POST
cloudinary_upload_asset
Upload one asset to Cloudinary from a remote URL or Data URI and return the normalized uploaded asset record.

/{cloudName}/

8 parameters
ParamTypeRequiredDescription
resourceTypestringoptionalThe Cloudinary resource type for the asset.
fileUrlstringoptionalThe remote HTTP or HTTPS file URL to upload.
fileDataUristringoptionalThe Data URI content to upload to Cloudinary.
publicIdstringoptionalThe public ID to assign to the uploaded asset.
displayNamestringoptionalThe user-friendly display name to assign to the asset.
assetFolderstringoptionalThe Cloudinary asset folder where the uploaded asset should be placed.
tagsarrayoptionalThe list of tags to send to Cloudinary.
cloudNamestringrequiredPath parameter: cloudName
POST
cloudinary_update_asset
Update selected mutable fields of one uploaded Cloudinary asset by public ID using the explicit API.

/{cloudName}/

6 parameters
ParamTypeRequiredDescription
resourceTypestringoptionalThe Cloudinary resource type for the asset.
publicIdstringrequiredThe public ID of the uploaded asset to update.
displayNamestringoptionalThe replacement display name for the uploaded asset.
assetFolderstringoptionalThe replacement asset folder for the uploaded asset.
tagsarrayoptionalThe list of tags to send to Cloudinary.
cloudNamestringrequiredPath parameter: cloudName
POST
cloudinary_rename_asset
Rename one uploaded Cloudinary asset by changing its public ID and return the normalized asset record.

/{cloudName}/

4 parameters
ParamTypeRequiredDescription
resourceTypestringoptionalThe Cloudinary resource type for the asset.
fromPublicIdstringrequiredThe current public ID of the uploaded asset.
toPublicIdstringrequiredThe replacement public ID for the uploaded asset.
cloudNamestringrequiredPath parameter: cloudName
GET
cloudinary_list_assets
List uploaded Cloudinary assets of one resource type with optional prefix filtering and cursor pagination.

/upload

7 parameters
ParamTypeRequiredDescription
resourceTypestringoptionalThe Cloudinary resource type for the asset.
prefixstringoptionalOnly list uploaded assets whose public IDs start with this prefix.
maxResultsintegeroptionalThe maximum number of uploaded assets to return.
nextCursorstringoptionalThe pagination cursor returned by the previous list request.
directionstringoptionalThe created_at sort direction for uploaded assets.
includeTagsbooleanoptionalWhether to include tags in the list response.
includeContextbooleanoptionalWhether to include context metadata in the list response.
GET
cloudinary_get_asset
Fetch one Cloudinary asset by immutable asset ID and return the normalized asset record.

/resources/{assetId}

1 parameter
ParamTypeRequiredDescription
assetIdstringrequiredThe immutable Cloudinary asset ID.