add-article
Add articles to a Notion database by providing a URL and database ID, with the option to generate a summary. Simplify content organization and access within your Notion workspace.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
databaseId | Yes | ||
generateSummary | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"databaseId": {
"type": "string"
},
"generateSummary": {
"default": true,
"type": "boolean"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"databaseId"
],
"type": "object"
}