list_threads
Retrieve and manage threads in a Microsoft Teams channel with pagination, enabling efficient navigation through discussion history.
Instructions
List threads in channel with pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Pagination cursor for the next page of results | |
limit | No | Maximum number of items to retrieve or page size |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Pagination cursor for the next page of results",
"title": "Cursor"
},
"limit": {
"default": 50,
"description": "Maximum number of items to retrieve or page size",
"title": "Limit",
"type": "integer"
}
},
"title": "list_threadsArguments",
"type": "object"
}