sys-url-list
Retrieve all Magento 2 store URLs in table, JSON, or CSV format. Filter URLs by store ID to manage and access website links for development and testing workflows.
Instructions
Get all Magento 2 URLs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | table |
storeId | No | Store ID to filter URLs |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "table",
"description": "Output format",
"enum": [
"table",
"json",
"csv"
],
"type": "string"
},
"storeId": {
"description": "Store ID to filter URLs",
"type": "string"
}
},
"type": "object"
}