config-store-get
Retrieve store-specific configuration values from Magento 2 by providing the configuration path and optional store ID to access targeted settings.
Instructions
Get store-specific Magento 2 configuration values
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Configuration path to get | |
storeId | No | Store ID (optional) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Configuration path to get",
"type": "string"
},
"storeId": {
"description": "Store ID (optional)",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}