This support forum is no longer in use. Please use the Cloudinary Community at https://community.cloudinary.com/ to receive assistance from other members of the community and from Cloudinary's support team. For account-specific questions or if you believe that you've encountered a bug, please contact the Cloudinary team directly via the "submit a request" option on this support site.

How to delete images with the same delivery type?

Comments

1 comment

  • Avatar
    Tia Esguerra

    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 pass https://protected.chatleap.com/5f844911f82aaa4ac4b98df8/ as the prefix to the delete_resources_by_prefix method. Note that the default type is upload, so if these are fetched images, you will also need to pass the type parameter and set that to fetch.

    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_resources

    I hope this helps. If you have any questions at all, do not hesitate to ask.

    Kind Regards,

    Tia

    0
    Comment actions Permalink

Post is closed for comments.