getTicket
Retrieve detailed information about a WordPress Trac ticket, including description, comments, and metadata, to track development progress and discussions effectively.
Instructions
Get detailed information about a specific WordPress Trac ticket including description, comments, and metadata.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commentLimit | No | Maximum number of comments to return (default: 10, max: 50) | |
id | Yes | Trac ticket ID number | |
includeComments | No | Include ticket comments and discussion (default: true) |
Input Schema (JSON Schema)
{
"properties": {
"commentLimit": {
"default": 10,
"description": "Maximum number of comments to return (default: 10, max: 50)",
"type": "number"
},
"id": {
"description": "Trac ticket ID number",
"type": "number"
},
"includeComments": {
"default": true,
"description": "Include ticket comments and discussion (default: true)",
"type": "boolean"
}
},
"required": [
"id"
],
"type": "object"
}