issue_get_worklogs
Retrieve worklogs for specific issues in Yandex Tracker using their IDs. Input issue IDs in the format '-' to fetch detailed worklog data.
Instructions
Get worklogs of a Yandex Tracker issue by its id
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_ids | Yes | Multiple Issue IDs. Each issue id is in the format '<project>-<id>', like 'SOMEPROJECT-1' |
Input Schema (JSON Schema)
{
"properties": {
"issue_ids": {
"description": "Multiple Issue IDs. Each issue id is in the format '<project>-<id>', like 'SOMEPROJECT-1'",
"items": {
"type": "string"
},
"title": "Issue Ids",
"type": "array"
}
},
"required": [
"issue_ids"
],
"title": "issue_get_worklogsArguments",
"type": "object"
}