get-archived-tasks
Retrieve archived tasks from Sunsama with pagination controls to manage large collections of completed or historical work items.
Instructions
Get archived tasks with optional pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of tasks to return (defaults to 100) | |
offset | No | Pagination offset (defaults to 0) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of tasks to return (defaults to 100)",
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"offset": {
"description": "Pagination offset (defaults to 0)",
"minimum": 0,
"type": "integer"
}
},
"type": "object"
}