> For the complete documentation index, see [llms.txt](https://docs.autoenhance.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.autoenhance.ai/images/basic-enhancements/restaging.md).

# Restaging

Restaging lets you go back in time and change how a shot was taken — no reshoot required. Catch the property on a grey day, with a dead lawn, a TV left on, or your own reflection in a mirror? Restaging fixes it after the fact: replace the sky with a brighter one, make the grass green and lush, black out the TV, light the fireplace, or remove the photographer — so the photo looks the way it would have on a perfect shoot day.

**Property Name:** `restage`

Use the `restage` object to control these sub-properties:

* [Sky Replacement](/images/basic-enhancements/restaging/sky-replacement.md) — Uses `sky`.
* [TV Blackout](/images/basic-enhancements/restaging/tv-blackout.md) — Uses `tvs`.
* [Fire in Fireplaces](/images/basic-enhancements/restaging/fire-in-fireplaces.md) — Uses `fire_in_fireplaces`.
* [Reflection Removal](/images/basic-enhancements/restaging/reflection-removal.md) — Uses `photographer`.
* [Grass Greening](/images/basic-enhancements/restaging/grass-greening.md) — Uses `grass`.

Open each child page for accepted values, examples, and sample images.

{% hint style="info" %}
Sky control moved into `restage.sky` in API version `2026-07-01`, replacing the old top-level `sky_replacement` and `cloud_type` fields. See [Sky Replacement](/images/basic-enhancements/restaging/sky-replacement.md) for details and migration notes.
{% endhint %}

### Full request example

```json
{
  "restage": {
    "sky": "LOW_CLOUD",
    "tvs": "BLACK_OUT",
    "fire_in_fireplaces": "ALIGHT",
    "photographer": "REMOVE",
    "grass": "GREEN"
  }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.autoenhance.ai/images/basic-enhancements/restaging.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
