add_wiki
Create and manage wiki pages in Backlog projects by specifying project ID, page name, content, and email notifications, enabling organized knowledge sharing.
Instructions
Creates a new wiki page
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| content | Yes | Content of the wiki page | |
| mailNotify | No | Whether to send notification emails (default: false) | |
| name | Yes | Name of the wiki page | |
| projectId | Yes | Project ID | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "content": {
      "description": "Content of the wiki page",
      "type": "string"
    },
    "mailNotify": {
      "description": "Whether to send notification emails (default: false)",
      "type": "boolean"
    },
    "name": {
      "description": "Name of the wiki page",
      "type": "string"
    },
    "projectId": {
      "description": "Project ID",
      "type": "number"
    }
  },
  "required": [
    "projectId",
    "name",
    "content"
  ],
  "type": "object"
}