Configuration Slugs
| Endpoint | Method |
|---|---|
/api/admin/configuration/slugs | GET |
Lists every registered configuration slug (a section or group key) so you can discover the valid slugs to pass to the Values and Update endpoints — without trial and error. See the Configuration overview for how the endpoints fit together.
The response is a one-element array; the object inside carries slugs (the list).
Slug shape
Each entry in slugs[] carries:
| Key | Meaning |
|---|---|
slug | Dotted key (e.g. sales.order_settings). Pass this to Values / Update. |
name | Human-readable label (already translated). |
sort | Display order within its parent. |
hasFields | true when the node holds editable fields directly. |
hasChildren | true when the node nests further sub-nodes. |
A node where hasFields is true is the level you read values for; a node where only hasChildren is true is a parent you can drill into.
Response codes
| Code | Meaning |
|---|---|
| 200 | Slug list returned. |
| 401 | Unauthenticated. |

