get_wikis_count
Retrieve the total count of wiki pages in a Backlog project by providing the project ID or key, enabling efficient tracking and management of project documentation.
Instructions
Returns count of wiki pages in a project
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| projectIdOrKey | Yes | Project ID or project key | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "projectIdOrKey": {
      "description": "Project ID or project key",
      "type": [
        "string",
        "number"
      ]
    }
  },
  "required": [
    "projectIdOrKey"
  ],
  "type": "object"
}