🔃Generated Image Webhook

Webhook that B2B customer implement and aihomedesign calls it in case of image generated

To obtain generated image URL (after_src), set a webhook endpoint on your dashboard at API-access section. Subsequently, submit an order. Upon completion, you will receive an order_id and an estimated time of arrival (ETA) in the response. Be prepared to await our request at the designated endpoint on your application. Below is a representation of our request to your webhook, including the after_src parameter: REQUEST BODY

{
    "order_id":string,
    "image":{
        "id":string,
        "before_src":string,
        "after_src":string,
        "regenerated":boolean,
        "style": string,
        "color":string,
        "space":string,
        "sky_style":string,
        "shadow_removal":boolean,
        "material":string,
        "created_at":date-time in string format
    },
    "service_name":string,
    "user_id":string 
}

Last updated