coda_list_pages
Retrieve and paginate through pages in a Coda document by specifying the document ID, limiting the number of pages returned, and using a token for subsequent results.
Instructions
List pages in the current document with pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
docId | Yes | The ID of the document to list pages from | |
limit | No | The number of pages to return - optional, defaults to 25 | |
nextPageToken | No | The token need to get the next page of results, returned from a previous call to this tool - optional |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"docId": {
"description": "The ID of the document to list pages from",
"type": "string"
},
"limit": {
"description": "The number of pages to return - optional, defaults to 25",
"exclusiveMinimum": 0,
"type": "integer"
},
"nextPageToken": {
"description": "The token need to get the next page of results, returned from a previous call to this tool - optional",
"type": "string"
}
},
"required": [
"docId"
],
"type": "object"
}