Deleting

This API endpoint allows you to delete images that you own. To delete an image, you must provide the image_id and a valid API key.

const imageId = "ID_OF_YOUR_IMAGE";
const apiKey = "YOUR_API_KEY";

const deleteImage = async (imageId, apiKey) => {
    const deleteImageResponse = await fetch(
      `https://api.autoenhance.ai/v3/images/${imageId}`,
      { 
        method: "DELETE" 
        headers:{
          "x-api-key": apiKey,  
        }
      }
    );
}

Specification

Delete Image

DELETEhttps://api.autoenhance.ai//v3/images/{id}
Path parameters
id*string
Response

No Content

Request
const response = await fetch('https://api.autoenhance.ai//v3/images/{id}', {
    method: 'DELETE',
    headers: {},
});
const data = await response.json();
Response
{
  "message": "text"
}

Last updated