# AI Item Removal

## Explanation

This API endpoint allows users to submit new orders within the `service-item-removal` service.

***

<mark style="color:green;">**`POST`**</mark> **`https://api.aihomedesign.com/v1/order`**

***

## Request Body

Ensure that your request body is in the <mark style="color:red;">**RAW-JSON**</mark> format.

```
{
    "order_id":string
}
```

* **`order_id`**: This should match the `order_id` returned by the Image Upload API.

{% hint style="info" %}
The item removal service does not require any widget, widget item, or space.
{% endhint %}

## Headers

<table><thead><tr><th>Key</th><th>Value</th><th data-hidden>Type</th></tr></thead><tbody><tr><td>x-api-key<mark style="color:red;">*</mark></td><td>{your_api_key_here}</td><td>string</td></tr></tbody></table>

## Response

{% tabs %}
{% tab title="200: OK " %}

<pre class="language-json"><code class="lang-json"><strong>{
</strong>   "order_id": string,
   "image_id": string,
   "eta": integer
}
</code></pre>

{% endtab %}

{% tab title="400: Bad Request " %}

```json
{
    "error": string,
    "key": string
}
```

{% endtab %}
{% endtabs %}
