coda_duplicate_page
Copy a page within a Coda document by specifying the document ID, page ID or name, and the new page name. Use this tool to replicate content efficiently.
Instructions
Duplicate a page in the current document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
docId | Yes | The ID of the document that contains the page to duplicate | |
newName | Yes | The name of the new page | |
pageIdOrName | Yes | The ID or name of the page to duplicate |
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 duplicate",
"type": "string"
},
"newName": {
"description": "The name of the new page",
"type": "string"
},
"pageIdOrName": {
"description": "The ID or name of the page to duplicate",
"type": "string"
}
},
"required": [
"docId",
"pageIdOrName",
"newName"
],
"type": "object"
}