coda_peek_page
Retrieve the initial lines of a Coda page by specifying document ID, page ID or name, and desired number of lines for quick preview and analysis.
Instructions
Peek into the beginning of a page and return a limited number of lines
Input Schema
Name | Required | Description | Default |
---|---|---|---|
docId | Yes | The ID of the document that contains the page to peek into | |
numLines | Yes | The number of lines to return from the start of the page - usually 30 lines is enough | |
pageIdOrName | Yes | The ID or name of the page to peek into |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"docId": {
"description": "The ID of the document that contains the page to peek into",
"type": "string"
},
"numLines": {
"description": "The number of lines to return from the start of the page - usually 30 lines is enough",
"exclusiveMinimum": 0,
"type": "integer"
},
"pageIdOrName": {
"description": "The ID or name of the page to peek into",
"type": "string"
}
},
"required": [
"docId",
"pageIdOrName",
"numLines"
],
"type": "object"
}