> For the complete documentation index, see [llms.txt](https://cupnoodles.gitbook.io/open-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cupnoodles.gitbook.io/open-api/ch4/brightnessdecrement/requsetformat.md).

# Request Format

| Params                          | Type    | Value                                       | Remarks                                                    |
| ------------------------------- | ------- | ------------------------------------------- | ---------------------------------------------------------- |
| intent                          | String  | action.devices.EXECUTE                      | Required.                                                  |
| id                              | String  |                                             | Device ID                                                  |
| execution → command             | String  | action.devices.commands.BrightnessDecrement | Required.                                                  |
| execution → params → brightness | Integer | 1 - 100                                     | Optional. Brightness decrement value, default value is 15. |

```
{
    "inputs": [
        {
            "intent": "action.devices.EXECUTE", 
            "payload": {
                "commands": [
                    {
                        "devices": [
                            {
                                "customData": { 
                                    "model": "yeelink-mono1", 
                                    "region": "CN"
                                }, 
                                "id": "M1GAxtaW9A0LXNwZWMtdjIVgoAFGA55ZWVsaW5rLWNvbG9AyMRUUGAg0NTk2NTYwNRVoAA"
                            }
                        ], 
                        "execution": [
                            {
                                "command": "action.devices.commands.BrightnessDecrement", 
                                "params": {
                                    "brightness": 15
                                }
                            }
                        ]
                    }
                ]
            }
        }
    ], 
    "requestId": "18210843532278199762"
}
```
