get_wiki_pages
Search for Wiki pages within a Backlog project using a keyword. Input the project ID or key to retrieve a list of relevant pages for efficient project documentation management.
Instructions
Returns list of Wiki pages
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| keyword | No | Keyword to search for in Wiki pages | |
| projectIdOrKey | Yes | Project ID or project key | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "keyword": {
      "description": "Keyword to search for in Wiki pages",
      "type": "string"
    },
    "projectIdOrKey": {
      "description": "Project ID or project key",
      "type": [
        "string",
        "number"
      ]
    }
  },
  "required": [
    "projectIdOrKey"
  ],
  "type": "object"
}