create_or_update_wiki_page
Create or update a Redmine wiki page by project and title. If the page exists, updates it; otherwise creates a new one.
Instructions
Creates or updates a wiki page. Uses PUT (idempotent by title). If the page exists it updates it, otherwise creates it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID (numeric) or identifier (string) | |
| title | Yes | Wiki page title (used as slug). For new pages this becomes the page name | |
| text | Yes | Page content in Textile format (Redmine default) or Markdown if configured | |
| comments | No | Version comment describing the change | |
| parent_title | No | Title of the parent wiki page (for hierarchy) | |
| version | No | Current version number for optimistic locking. If provided and conflicts, update will fail |