Creating
This API endpoint allows you to create orders. To create an order, you must provide a valid API key.
const apiKey = "YOUR_API_KEY";
const createOrder = async (apiKey) => {
const createOrderResponse = await fetch(
"https://api.autoenhance.ai/v3/orders",
{
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": apiKey,
},
body: JSON.stringify({
name:"Name of my order"
}),
}
);
const { order_id, name, images, status } = await createOrderResponse.json();
}
The response after successfully creating an order will contain all the details of your order. The status will be 'waiting' until you add images to it.
Specification
Authorizations
Body
namestringOptional
The name for the order.
order_idstringOptional
The ID for the order.
Responses
200
Successful response
application/json
Responseany
401
Authentication error
application/json
422
Validation error
application/json
post
POST /v3/orders/ HTTP/1.1
Host: api.autoenhance.ai
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"name": "text",
"order_id": "text"
}
No content
Last updated