relentless_insert
Add structured data to Notion databases with automatic validation. Create documentation, blog posts, leads, or other content that becomes immediately visible in Notion.
Instructions
Insert a new entry into a Notion database via Relentless API. Data is automatically validated before insertion to catch errors early. Use this to create new documentation, blog posts, leads, or any structured data. The data will be immediately visible in Notion and accessible via the Relentless API.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database | Yes | The database name (e.g., "blog", "docs", "leads"). Use relentless_list_databases to see available databases. | |
| data | Yes | The data to insert. Keys should match your Notion database property names exactly (e.g., {"Title": "My Post", "Content": "...", "Published": true}). Property names are case-sensitive. Will be validated before insertion. | |
| skipValidation | No | Skip pre-insert validation. Use only if you know the data is correct and want to speed up insertion. |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"additionalProperties": true,
"description": "The data to insert. Keys should match your Notion database property names exactly (e.g., {\"Title\": \"My Post\", \"Content\": \"...\", \"Published\": true}). Property names are case-sensitive. Will be validated before insertion.",
"type": "object"
},
"database": {
"description": "The database name (e.g., \"blog\", \"docs\", \"leads\"). Use relentless_list_databases to see available databases.",
"type": "string"
},
"skipValidation": {
"default": false,
"description": "Skip pre-insert validation. Use only if you know the data is correct and want to speed up insertion.",
"type": "boolean"
}
},
"required": [
"database",
"data"
],
"type": "object"
}