action notion_update_ablock { label: "Update a block" description: "This endpoint allows you to update block content. [See Full Documentation](https://developers.notion.com/reference/update-a-block)" provider: notion method: PATCH path: "/v1/blocks/{id}" encoding: json input: { type: "object" properties: { "Notion-Version": { type: "string" } paragraph: { type: "object" properties: { rich_text: { type: "array" items: { type: "object" properties: { text: { type: "object" properties: { content: { type: "string" } } } type: { type: "string" } } } } } } } additionalProperties: false } output: { type: "object" properties: { created_time: { type: "string" } has_children: { type: "boolean" } id: { type: "string" } last_edited_time: { type: "string" } object: { type: "string" } paragraph: { type: "object" properties: { text: { type: "array" items: { type: "object" properties: { annotations: { type: "object" properties: { bold: { type: "boolean" } code: { type: "boolean" } color: { type: "string" } italic: { type: "boolean" } strikethrough: { type: "boolean" } underline: { type: "boolean" } } } href: { type: "object" } plain_text: { type: "string" } text: { type: "object" properties: { content: { type: "string" } link: { type: "object" } } } type: { type: "string" } } } } } } type: { type: "string" } } } }