For the complete documentation index, see llms.txt. This page is also available as Markdown.

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,  
        }
      }
    );
}
import requests

image_id = "ID_OF_YOUR_IMAGE"
api_key = "YOUR_API_KEY"

def delete_order(image_id, api_key):
    url = f"https://api.autoenhance.ai/v3/images/{image_id}"
    headers = {
        "x-api-key": api_key
    }
    
    response = requests.delete(url, headers=headers)

Specification

Delete Image

delete
Authorizations
x-api-keystringRequired
Path parameters
idstringRequired
Responses
204

No Content

No content

delete/v3/images/{id}
DELETE /v3/images/{id} HTTP/1.1
Host: api:8080
x-api-key: YOUR_API_KEY
Accept: */*

No content

Last updated

Was this helpful?