get_page_by_path
Retrieve a specific WikiJS page by providing its path and locale, enabling precise content access within WikiJS knowledge bases.
Instructions
Get a WikiJS page by its path and locale
Input Schema
Name | Required | Description | Default |
---|---|---|---|
locale | Yes | The locale of the page (e.g., "en") | |
path | Yes | The path of the page to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"locale": {
"description": "The locale of the page (e.g., \"en\")",
"pattern": "^[a-z]{2}(-[A-Z]{2})?$",
"type": "string"
},
"path": {
"description": "The path of the page to retrieve",
"type": "string"
}
},
"required": [
"path",
"locale"
],
"type": "object"
}