🔚Post AI Creative Designer Order Submit

Uploading & Submitting Order

Mind that your "request body" must be in RAW-JSON format.

Endpoint for submitting your order

POST https://api.aihomedesign.com/api/v1/ai/furnovate/submit

This API endpoint allows users to submit new orders for products in the system.

Headers

NameTypeDescription

x-api-key*

string

your API-Key

Request Body

NameTypeDescription

order_id*

string

it's an order id that received from image upload endpoint

Style*

string

The desired style of furnishing for the new variation. Must be in the following array: Hampton, Diwali, Christmas, Modern, Contemporary, Scandinavian, Farmhouse, UrbanIndustrial, Industrial, Traditional, Valentine.

space_name*

string

The type of room for the new variations. Must be one of:["space-kitchen", "space-bathroom", "space-office", "space-dining-room", "space-living-room", "space-bedroom", "space-outdoor", "space-kids-room", "space-guest-room", "space-game-room","space-laundry-room","space-basement","space-hotel-room","space-hotel-lobby","space-car-garage","space-outdoor-patio","space-outdoor-garden","space-home-gym","space-wine-cellar","space-outdoor-pool-area","space-walk-in-closet","space-exhibition-space","space-clothing-store","space-coffee-shop"]

Color

String

The collor palette you want to apply.Must be: ["SoftNeutrals","CoastalCalm","CrispWinter","SeaBreeze","RocketPop","CottonCandy","70sRetro","ForestGetaway","CandyShop","NaturalGreen","DeepBlues","MinimalistMonochrome","EarthyNeutrals","PastelCalm","CoolGreys","SnowWhite","PeachFuzz2024","Dark"]

{
   "orderId": string,
   "eta": integer
}
```This is a sample of request body for this endpoint calling...```

{
    "order_id":"f2d2ad90-10c5-481c-9c73-2a495g0d4c21",
    "space_name" : "space-bedroom",
    "selected_widgets" : 
    [
        {
            "title" : "Style",
            "prompt" : "Hampton"
        },
        {
            "title" : "Color",
            "prompt" : "Dark"
        }
    ]
}

Last updated