coda_rename_page
Update the name of a specific page in a Coda document by specifying the document ID, page ID or name, and the new page name. Simplify document organization and clarity with this targeted renaming tool.
Instructions
Rename a page in the current document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
docId | Yes | The ID of the document that contains the page to rename | |
newName | Yes | The new name of the page | |
pageIdOrName | Yes | The ID or name of the page to rename |
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 rename",
"type": "string"
},
"newName": {
"description": "The new name of the page",
"type": "string"
},
"pageIdOrName": {
"description": "The ID or name of the page to rename",
"type": "string"
}
},
"required": [
"docId",
"pageIdOrName",
"newName"
],
"type": "object"
}