coda_create_page
Add a new page to a Coda document by specifying the document ID, page name, and optional content or parent page ID for organized structuring.
Instructions
Create a page in the current document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | The markdown content of the page to create - optional | |
docId | Yes | The ID of the document to create the page in | |
name | Yes | The name of the page to create | |
parentPageId | No | The ID of the parent page to create this page under - optional |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "The markdown content of the page to create - optional",
"type": "string"
},
"docId": {
"description": "The ID of the document to create the page in",
"type": "string"
},
"name": {
"description": "The name of the page to create",
"type": "string"
},
"parentPageId": {
"description": "The ID of the parent page to create this page under - optional",
"type": "string"
}
},
"required": [
"docId",
"name"
],
"type": "object"
}