search
Discussion List
-
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…