Image Enhancement

Submit Image Enhancement Order

Explanation

This API endpoint allows users to submit new orders within the service-image-enhancement service.


POST https://api.aihomedesign.com/v1/order


Request Body

Ensure that your request body is in RAW-JSON format.

The service-image-enhancement accepts Enhancement Options as an optional widget. To include a widget in the request body, specify the widget's id in selected_widgets as id and the selected widget item's id as item_id.

{
    "order_id": string,
    "space_name": string,
    "selected_widgets" : 
    [
        {
            "id" : string,
            "item_id" : string
        }
    ]
}
  • order_id: This should match the order_id returned by the Image Upload API.

  • space_name: Retrieve the space_name using the service_name from the Get Spaces endpoint.

  • selected_widgets:

Headers

Response

{
   "order_id": string,
   "image_id": string,
   "eta": integer
}

Last updated