Day To Dusk

Submit Day To Dusk Order

Explanation

This API endpoint allows users to submit new orders within the service-day-to-dusk service.


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


Request Body

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

The service-day-to-dusk service requires sky style as a mandatory widget. To attach this widget to the request body, include the widget's id in selected_widgets under id and the selected widget item's id under item_id.

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

  • remove_shadow: This toggle determines whether shadows are removed. Set to true to remove shadows or false to keep them.

  • selected_widgets:

Headers

Response

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

Last updated