Deleting

This API endpoint allows you to delete orders that you own. To delete an order, you must provide the order_id and a valid API key.

const orderId = "ID_OF_YOUR_ORDER";
const apiKey = "YOUR_API_KEY";

const deleteOrder = async (orderId, apiKey) => {
    const deleteOrderResponse = await fetch(
      `https://api.autoenhance.ai/v3/orders/${orderId}`,
      { 
        method: "DELETE" 
        headers:{
          "x-api-key": apiKey,  
        }
      }
    );
}

Specification

Delete Image

DELETEhttps://api.autoenhance.ai//v3/images/{id}
Authorization
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