get-issue-activity
Retrieve detailed activity information for a specific issue within a Plane project by providing project, issue, and activity IDs.
Instructions
Get detailed information about a specific issue activity
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| activity_id | Yes | ID of the activity to retrieve | |
| issue_id | Yes | ID of the issue containing the activity | |
| project_id | Yes | ID of the project containing the issue |
Input Schema (JSON Schema)
{
"properties": {
"activity_id": {
"description": "ID of the activity to retrieve",
"type": "string"
},
"issue_id": {
"description": "ID of the issue containing the activity",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id",
"activity_id"
],
"type": "object"
}