-
How to find fetched images in the library by their "containing folder"
When I search for "thum" in my Media Library, I find a lot of assets for which the "Containing folder" columns contains "rexdl.com". I guess these assets were added when I didn't make sure to restrict the list of domains from which Cloudinary could fetch assets. I would like to delete all these assets, but when I search…
-
Unable to query my Product Environment
I'm using nodejs sdk, and I have this simple config in my project: cloudinary.config ({ cloud_name: "testname", api_key: "11223344556677", api_secret: "h64hsh6wh7whs", secure: true, analytics: false, hide_sensitive: true }) const result = await cloudinary.api .resources() .then(result=> console.log(result)); But I'm…
-
How to get Embedded Metadata (EXIF) from an image?
I want to get all image from a folder using: const photoList = await cloudinary.v2.api.resources( { type: "upload", prefix: "<FOLDER_NAME>", metadata: true, }, function (error, result) { console.log(result, error); }, ); I can see the EXIF data from my images in the DAM and I need the DateTimeOriginal from the image's…
-
Search API: search by created_at with timestamp
Using the search API, I can search by created_at with this expression: "created_at>2023-09-01" But how can I include a timestamp? If I follow the format from this documentation: https://cloudinary.com/documentation/search_api#expression_fields "created_at>2023-09-01T08:00:00Z" I get the error: "Query Error (at position 25)…
-
Search for empty value in metadata field AND specific value in another metadata field
I can search for an empty value in a metadata field with this expression: -metadata=client_award_level I can search for a value in a metadata field with this expression: metadata.material_number="49738066" But I get an error when I try to combine them with 'AND' -metadata=client_award_level AND…
-
Cloudinary DAM : Basic Searching Guidelines for Global Search
🔎 Searching is not case-sensitive: BEACH beach Beach ..will each return the same results. 🔎 Boolean operands must be specified in all UPPER-CASE: beach AND sand beach OR sand beach NOT sand 🔎 Boolean searching is implied OR: beach sand beach OR sand ..will each return the same results and is designed to allow for…