How to delete images with the same delivery type?
Hello!
We have a lot of images in the main "home" folder and I want to delete them by API, but don't know how:
Example:
I want to delete all the assets that have "5f844911f82aaa4ac4b98df8" in the link
How can I find them?
Thank you!
-
Hi there,
Thanks so much for reaching out.
If you want to delete multiple assets at the same time, you can use the
delete resources
method of the Admin API. If the assets you want to delete are of the same structure as the URL you shared, you could passhttps://protected.chatleap.com/5f844911f82aaa4ac4b98df8/
as the prefix to thedelete_resources_by_prefix
method. Note that the default type is upload, so if these are fetched images, you will also need to pass thetype
parameter and set that tofetch
.So an example of what that might look like is as follows:
cloudinary.api .delete_resources_by_prefix("https://protected.chatleap.com/5f844911f82aaa4ac4b98df8/", { type: "fetch", }) .then((result) => console.log(result)) .catch((error) => console.error(error));
You can reference the documentation here on the delete resources method of the Admin APi:
https://cloudinary.com/documentation/admin_api#delete_resourcesI hope this helps. If you have any questions at all, do not hesitate to ask.
Kind Regards,
Tia
0
Post is closed for comments.
Comments
1 comment