config-set
Set Magento 2 system configuration values for different scopes to customize store settings, manage website configurations, and update store-specific parameters.
Instructions
Set Magento 2 system configuration values
Input Schema
Name | Required | Description | Default |
---|---|---|---|
encrypt | No | Encrypt the value | |
path | Yes | Configuration path to set | |
scope | No | Configuration scope (default, website, store) | |
scopeId | No | Scope ID (website ID or store ID) | |
value | Yes | Value to set |
Input Schema (JSON Schema)
{
"properties": {
"encrypt": {
"description": "Encrypt the value",
"type": "boolean"
},
"path": {
"description": "Configuration path to set",
"type": "string"
},
"scope": {
"description": "Configuration scope (default, website, store)",
"type": "string"
},
"scopeId": {
"description": "Scope ID (website ID or store ID)",
"type": "string"
},
"value": {
"description": "Value to set",
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
}