config-store-set
Set store-specific configuration values in Magento 2 to customize settings for individual store views or websites.
Instructions
Set store-specific Magento 2 configuration values
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Configuration path to set | |
storeId | No | Store ID (optional) | |
value | Yes | Value to set |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Configuration path to set",
"type": "string"
},
"storeId": {
"description": "Store ID (optional)",
"type": "string"
},
"value": {
"description": "Value to set",
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
}