update-database-entry
Modify specific properties of a Notion database entry by providing the page ID and updated property values, ensuring data accuracy and consistency in your workspace.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageId | Yes | ||
properties | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pageId": {
"type": "string"
},
"properties": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"pageId",
"properties"
],
"type": "object"
}