create_database_row
Create a new row in a Notion database with full property type support, including titles, selects, dates, relations, and optional markdown content.
Instructions
Create a new row in a Notion database with full property type support.
Args: database_id: The ID of the Notion database properties: Dict of property_name -> value. Supported types: - title: str - rich_text: str - number: int or float - select: str (option name) - multi_select: list[str] (option names) - date: str (ISO 8601) or {"start": str, "end": str} - checkbox: bool - url: str - email: str - phone_number: str - status: str (status name) - files: list[str] (URLs) - relation: list[str] (page IDs) - people: list[str] (user IDs) content: Optional markdown content to add to the page body
Returns: Created page with ID and URL
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | No | ||
| properties | Yes | ||
| database_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||