Retrieving
This API endpoint allows you to retrieve a single order. To retrieve an order, you must provide the order_id.
const orderId = "ID_OF_YOUR_ORDER";
const getOrder = async (orderId) => {
const getOrderResponse = await fetch(
`https://api.autoenhance.ai/v3/orders/${orderId}`,
{ method: "GET" }
);
const { order_id, name, images, status } = await getOrderResponse.json();
}order_id = "ID_OF_YOUR_ORDER";
def get_order(order_id):
url = f"https://api.autoenhance.ai/v3/orders/{order_id}"
response = requests.get(url)
response_data = response.json()
order_id = response_data.get('order_id')
name = response_data.get('name')
images = response_data.get('images')
status = response_data.get('status')
return order_id, name, images, statusThe response after successfully fetching an order will contain all the details of your order.
Specification
Last updated