I am uploading an Image on cloudinary using axios post request and I also want to delete images using axios delete but I couldn't find any api url or any code that can help me to send delete request to cloudnary using axios delete.
Using This code to upload image on Cloudinarylet imageFile = this.props.img
var formData = new FormData()
formData.append('file', imageFile)
formData.append('upload_preset', Routes.CLOUDINARY_PRESET)
await axios.post(Routes.CLOUDINARY_API, formData)
.then(function (res) {
imageURL = res.data.secure_url
})
.catch(function (err) {
console.log("err", err)
})