Is there a limit on the number of images that can be deleted?
I want to allow the my users to delete all the images that they may have in their profile. So, to delete them I am passing the public_ids of all the images to the cloudinary api.
Code sample:
cloudinary.api.delete_resources(arrayOfPublicIds,function(next) { //something};
Is there a limit on how big this array of public_ids can be?
-- I know of the limit on delete_all, but I have a doubt on existence of a limit in my case.
Thanks
0
-
There's indeed a limit, you can pass an array of up to 100 public IDs per call.
0
Post is closed for comments.
Comments
1 comment