create_or_update_wiki_page
Create a new or update an existing Redmine wiki page in a project, providing title, content, and optional parent page and edit comment.
Instructions
Create a new wiki page, or update an existing one.
Redmine uses the same PUT endpoint for both cases.
Args: project_identifier: project identifier. title: page title (e.g. 'Home'). text: content in Markdown or Textile, depending on the instance's configuration (Administration -> Settings -> General -> Text formatting). comment: comment about the edit (shows up in the page's history). parent_page: title of the page that should become this one's parent, to nest it in the wiki index. Empty = leave the current nesting alone; on a new page, leaves it at the root.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| title | Yes | ||
| comment | No | ||
| parent_page | No | ||
| project_identifier | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |