get_group_wiki_page
Retrieve a specific wiki page for a GitLab group, with options to render HTML content and specify the version, using input parameters like group ID and page slug.
Instructions
Get a specific wiki page for a GitLab group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
group_id | No | ||
render_html | No | ||
slug | No | ||
version | No |
Input Schema (JSON Schema)
{
"properties": {
"group_id": {
"type": "string"
},
"render_html": {
"type": "boolean"
},
"slug": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
}