Notion

Learn how to use Notion with Composio

Overview

SLUG: NOTION

Description

Notion centralizes notes, docs, wikis, and tasks in a unified workspace, letting teams build custom workflows for collaboration and knowledge management

Authentication Details

client_id
stringRequired
client_secret
stringRequired
oauth_redirect_uri
stringDefaults to https://backend.composio.dev/api/v1/auth-apps/add
scopes
string
generic_api_key
stringRequired

Connecting to Notion

Create an auth config

Use the dashboard to create an auth config for the Notion toolkit. This allows you to connect multiple Notion accounts to Composio for agents to use.

1

Select App

Navigate to Notion.

2

Configure Auth Config Settings

Select among the supported auth schemes of and configure them here.

3

Create and Get auth config ID

Click “Create Notion Auth Config”. After creation, copy the displayed ID starting with ac_. This is your auth config ID. This is not a sensitive ID — you can save it in environment variables or a database. This ID will be used to create connections to the toolkit for a given user.

Connect Your Account

Using OAuth2

1from composio import Composio
2
3# Replace these with your actual values
4notion_auth_config_id = "ac_YOUR_NOTION_CONFIG_ID" # Auth config ID created above
5user_id = "0000-0000-0000" # UUID from database/application
6
7composio = Composio()
8
9
10def authenticate_toolkit(user_id: str, auth_config_id: str):
11 connection_request = composio.connected_accounts.initiate(
12 user_id=user_id,
13 auth_config_id=auth_config_id,
14 )
15
16 print(
17 f"Visit this URL to authenticate Notion: {connection_request.redirect_url}"
18 )
19
20 # This will wait for the auth flow to be completed
21 connection_request.wait_for_connection(timeout=15)
22 return connection_request.id
23
24
25connection_id = authenticate_toolkit(user_id, notion_auth_config_id)
26
27# You can also verify the connection status using:
28connected_account = composio.connected_accounts.get(connection_id)
29print(f"Connected account: {connected_account}")

Using API Key

1from composio import Composio
2
3# Replace these with your actual values
4notion_auth_config_id = "ac_YOUR_NOTION_CONFIG_ID" # Auth config ID created above
5user_id = "0000-0000-0000" # UUID from database/app
6
7composio = Composio()
8
9def authenticate_toolkit(user_id: str, auth_config_id: str):
10 # Replace this with a method to retrieve an API key from the user.
11 # Or supply your own.
12 user_api_key = input("[!] Enter API key")
13
14 connection_request = composio.connected_accounts.initiate(
15 user_id=user_id,
16 auth_config_id=auth_config_id,
17 config={"auth_scheme": "API_KEY", "val": {"generic_api_key": user_api_key}}
18 )
19
20 # API Key authentication is immediate - no redirect needed
21 print(f"Successfully connected Notion for user {user_id}")
22 print(f"Connection status: {connection_request.status}")
23
24 return connection_request.id
25
26
27connection_id = authenticate_toolkit(user_id, notion_auth_config_id)
28
29# You can verify the connection using:
30connected_account = composio.connected_accounts.get(connection_id)
31print(f"Connected account: {connected_account}")

Tools

Executing tools

To prototype you can execute some tools to see the responses and working on the Notion toolkit’s playground

For code examples, see the Tool calling guide and Provider examples.

Tool List

Tool Name: Add multiple content blocks (bulk, user-friendly)

Description

Bulk-add content blocks to Notion. CRITICAL: Notion API enforces 2000 char limit per text.content field. Features: - Accepts simplified format: {'content': 'text', 'block_property': 'type'} - OR full Notion block format with 'type' and properties - AUTO-SPLITS text >2000 chars into multiple blocks - AUTO-PARSES markdown: **bold**, *italic*, ~~strike~~, `inline code`, [links](url) - Maximum 100 blocks per API call REQUIRED 'content' for: paragraph, heading_1-3, callout, to_do, toggle, quote, list items. For code blocks use full format: {'type': 'code', 'code': {'rich_text': [...], 'language': 'python'}} Common errors: - "content.length should be ≤ 2000": Auto-split failed, manually split content - "Content is required": Missing content for text blocks - Each item MUST be wrapped in 'content_block' field

Action Parameters

after
content_blocks
arrayRequired
parent_block_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Add single content block to Notion page (Deprecated)

Description

DEPRECATED: Use 'add_multiple_page_content' for better performance. Adds a single content block to a Notion page/block. CRITICAL: Notion API enforces a HARD LIMIT of 2000 characters per text.content field. Content exceeding 2000 chars is AUTOMATICALLY SPLIT into multiple sequential blocks. REQUIRED 'content' field for text blocks: paragraph, heading_1-3, callout, to_do, toggle, quote, list items. Parent blocks MUST be: Page, Toggle, To-do, Bulleted/Numbered List Item, Callout, or Quote. Common errors: - "content.length should be ≤ 2000": Text exceeds API limit (should be auto-handled) - "Content is required for paragraph blocks": Missing 'content' field for text blocks - "object_not_found": Invalid parent_block_id or no integration access For bulk operations, use 'add_multiple_page_content' instead.

Action Parameters

after
content_block
Required
parent_block_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Append raw Notion blocks (advanced API)

Description

DEPRECATED: Use NOTION_APPEND_TEXT_BLOCKS, NOTION_APPEND_TASK_BLOCKS, NOTION_APPEND_CODE_BLOCKS, NOTION_APPEND_MEDIA_BLOCKS, NOTION_APPEND_LAYOUT_BLOCKS, or NOTION_APPEND_TABLE_BLOCKS instead. Appends raw Notion API blocks to parent. Text limited to 2000 chars per text.content field. Each block MUST have 'object':'block' and 'type'. Use rich_text arrays for text blocks.

Action Parameters

after
block_id
stringRequired
children
arrayRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Append code blocks (code, quote, equation)

Description

Append code and technical blocks (code, quote, equation) to a Notion page. Use for: - Code snippets and programming examples (code) - Citations and highlighted quotes (quote) - Mathematical formulas and equations (equation) Supported block types: - code: Code with syntax highlighting (70+ languages including Python, JavaScript, Go, Rust, etc.) - quote: Block quotes for citations - equation: LaTeX/KaTeX mathematical expressions ⚠️ Code content is limited to 2000 characters per text.content field. For longer code, split into multiple code blocks. For other block types, use specialized actions: - append_text_blocks: paragraphs, headings, lists - append_task_blocks: to-do, toggle, callout - append_media_blocks: image, video, audio, files - append_layout_blocks: divider, columns, TOC - append_table_blocks: tables

Action Parameters

after
block_id
stringRequired
children
arrayRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Append layout blocks (divider, TOC, columns)

Description

Append layout/structural blocks (divider, TOC, breadcrumb, columns) to a Notion page. Use for: - Visual separation between sections (divider) - Auto-generated navigation from headings (table_of_contents) - Page location breadcrumbs (breadcrumb) - Multi-column layouts (column_list + column) Supported block types: - divider: Horizontal line separator - table_of_contents: Auto-generated from page headings - breadcrumb: Shows page hierarchy (auto-generated) - column_list: Container for columns - column: Individual column (child of column_list) For multi-column layouts: 1. Create a column_list block 2. Add column blocks as children of the column_list 3. Add content to each column For other block types, use specialized actions: - append_text_blocks: paragraphs, headings, lists - append_task_blocks: to-do, toggle, callout - append_code_blocks: code, quote, equation - append_media_blocks: image, video, audio, files - append_table_blocks: tables

Action Parameters

after
block_id
stringRequired
children
arrayRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Append media blocks (image, video, audio, files)

Description

Append media blocks (image, video, audio, file, pdf, embed, bookmark) to a Notion page. Use for: - Images and screenshots (image) - YouTube/Vimeo videos or direct video URLs (video) - Audio files and podcasts (audio) - File downloads (file) - PDF documents (pdf) - Embedded content from Twitter, Figma, CodePen, etc. (embed) - Link previews with metadata (bookmark) All media blocks require external URLs. For other block types, use specialized actions: - append_text_blocks: paragraphs, headings, lists - append_task_blocks: to-do, toggle, callout - append_code_blocks: code, quote, equation - append_layout_blocks: divider, columns, TOC - append_table_blocks: tables

Action Parameters

after
block_id
stringRequired
children
arrayRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Append table blocks

Description

Append table blocks to a Notion page. Use for structured tabular data like spreadsheets, comparison charts, and status trackers. Example: { "table_width": 3, "has_column_header": true, "rows": [ {"cells": [[{"type": "text", "text": {"content": "Col1"}}], [...], [...]]} ] } ⚠️ Cell content limited to 2000 chars per text.content field.

Action Parameters

after
block_id
stringRequired
tables
arrayRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Append task blocks (to-do, toggle, callout)

Description

Append task and interactive blocks (to-do, toggle, callout) to a Notion page. Use for: - Task lists and project management (to_do) - Collapsible/expandable content sections (toggle) - Important notes, warnings, tips (callout) Supported block types: - to_do: Checkbox items that can be checked/unchecked - toggle: Collapsible sections with expandable content - callout: Highlighted boxes with emoji icons ⚠️ Text content is limited to 2000 characters per text.content field. For other block types, use specialized actions: - append_text_blocks: paragraphs, headings, lists - append_code_blocks: code, quote, equation - append_media_blocks: image, video, audio, files - append_layout_blocks: divider, columns, TOC - append_table_blocks: tables

Action Parameters

after
block_id
stringRequired
children
arrayRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Append text blocks (paragraphs, headings, lists)

Description

Append text blocks (paragraphs, headings, lists) to a Notion page. This is the most commonly used action for adding content to Notion. Use for: documentation, notes, articles, outlines, lists. Supported block types: - paragraph: Regular text - heading_1, heading_2, heading_3: Section headers - bulleted_list_item: Bullet points - numbered_list_item: Numbered lists ⚠️ Text content is limited to 2000 characters per text.content field. For other block types, use specialized actions: - append_task_blocks: to-do, toggle, callout - append_code_blocks: code, quote, equation - append_media_blocks: image, video, audio, files - append_layout_blocks: divider, columns, TOC - append_table_blocks: tables

Action Parameters

after
block_id
stringRequired
children
arrayRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Archive Notion Page

Description

Archives (moves to trash) or unarchives (restores from trash) a specified Notion page.

Action Parameters

archive
booleanDefaults to True
page_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Create comment

Description

Adds a comment to a Notion page (via `parent_page_id`) OR to an existing discussion thread (via `discussion_id`); cannot create new discussion threads on specific blocks (inline comments).

Action Parameters

comment
objectRequired
discussion_id
parent_page_id

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Create Notion Database

Description

Creates a new Notion database as a subpage under a specified parent page with a defined properties schema. IMPORTANT NOTES: - The parent page MUST be shared with your integration, otherwise you'll get a 404 error - If you encounter conflict errors (409), retry the request as Notion may experience temporary save conflicts - For relation properties, you MUST provide the database_id of the related database - Parent ID must be a valid UUID format (with or without hyphens), not a template variable Use this action exclusively for creating new databases.

Action Parameters

parent_id
stringRequired
properties
title
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Create Notion file upload

Description

Tool to create a Notion FileUpload object and retrieve an upload URL. Use when you need to automate attaching local or external files directly into Notion without external hosting.

Action Parameters

content_type
external_url
filename
mode
number_of_parts

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Create Notion page

Description

Creates a new empty page in a Notion workspace under a specified parent page or database. PREREQUISITES: - Parent page/database must exist and be accessible in your Notion workspace - Use search_pages or list_databases first to obtain valid parent IDs LIMITATIONS: - Cannot create root-level pages (must have a parent) - May encounter conflicts if creating pages too quickly - Title-based parent search is less reliable than using UUIDs

Action Parameters

cover
icon
parent_id
stringRequired
title
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Delete a block

Description

Archives a Notion block, page, or database using its ID, which sets its 'archived' property to true (like moving to "Trash" in the UI) and allows it to be restored later. Note: This operation will fail if the block has an archived parent or ancestor in the hierarchy. You must unarchive the ancestor before archiving/deleting its descendants.

Action Parameters

block_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Duplicate page

Description

Duplicates a Notion page, including all its content, properties, and nested blocks, under a specified parent page or workspace.

Action Parameters

page_id
stringRequired
parent_id
stringRequired
title

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Fetch All Notion Block Contents

Description

Tool to fetch all child blocks for a given Notion block. Use when you need a complete listing of a block's children beyond a single page; supports optional recursive expansion of nested blocks.

Action Parameters

block_id
page_size
integerDefaults to 100
page_url
recursive
boolean

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Fetch Notion Block Children

Description

Retrieves a paginated list of direct, first-level child block objects along with contents for a given parent Notion block or page ID; use block IDs from the response for subsequent calls to access deeply nested content.

Action Parameters

block_id
stringRequired
page_size
start_cursor

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Fetch Notion block metadata

Description

Fetches metadata for a Notion block (including pages, which are special blocks) using its UUID. Returns block type, properties, and basic info but not child content. Prerequisites: 1) Block/page must be shared with your integration, 2) Use valid block_id from API responses (not URLs). For child blocks, use fetch_block_contents instead. Common 404 errors mean the block isn't accessible to your integration.

Action Parameters

block_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Fetch comments

Description

Fetches unresolved comments for a specified Notion block or page ID.

Action Parameters

block_id
page_id
page_size
integerDefaults to 100
start_cursor

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Fetch Notion Data

Description

Fetches Notion items (pages and/or databases) from the Notion workspace, use this to get minimal data about the items in the workspace with a query or list all items in the workspace with minimal data

Action Parameters

fetch_type
stringRequired
original_page_size
page_size
Defaults to 100
page_size_was_capped
boolean
query

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Fetch Database

Description

Fetches a Notion database's structural metadata (properties, title, etc.) via its `database_id`, not the data entries; `database_id` must reference an existing database.

Action Parameters

database_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Fetch database row

Description

Retrieves a Notion database row's properties and metadata; use fetch_block_contents for page content blocks.

Action Parameters

page_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Get About Me

Description

Retrieves the User object for the bot associated with the current Notion integration token, typically to obtain the bot's user ID for other API operations.

Action Parameters

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Get about user

Description

Retrieves detailed information about a specific Notion user, such as their name, avatar, and email, based on their unique user ID.

Action Parameters

user_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Get page property

Description

Call this to get a specific property from a Notion page when you have a valid `page_id` and `property_id`; handles pagination for properties returning multiple items.

Action Parameters

page_id
stringRequired
page_size
property_id
stringRequired
start_cursor

Action Response

data
Required
error
successful
booleanRequired

Tool Name: Insert row database

Description

Creates a new page (row) in a specified Notion database. Prerequisites: - Database must be shared with your integration - Property names AND types must match schema exactly (case-sensitive) - Use NOTION_FETCH_DATA with fetch_type='databases' first to get exact property names and types - Each database has ONE 'title' property; other text fields are 'rich_text' Common Errors: - 404: Database not shared with integration - 400 "not a property": Wrong property name - 400 "expected to be X": Wrong property type

Action Parameters

child_blocks
array
cover
database_id
stringRequired
icon
properties
array

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: List data source templates

Description

Tool to list all templates for a Notion data source. Use when needing to discover template IDs/names for bulk page creation. Use after confirming the data_source_id.

Action Parameters

data_source_id
stringRequired
page_size
start_cursor

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: List Notion file uploads

Description

Tool to retrieve file uploads for the current bot integration, sorted by most recent first. Use when you need to list all file uploads or paginate through file upload history.

Action Parameters

page_size
start_cursor

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: List users

Description

Retrieves a paginated list of users (excluding guests) from the Notion workspace; the number of users returned per page may be less than the requested `page_size`.

Action Parameters

page_size
integerDefaults to 30
start_cursor

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Move Page

Description

Tool to move a Notion page to a new parent (page or database). Use when you need to reorganize page hierarchy. Important: To move to a database, use data_source_id (NOT database_id). Get the data source ID from the database object using NOTION_FETCH_DATABASE.

Action Parameters

page_id
stringRequired
parent
Required

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Query database

Description

Queries a Notion database to retrieve pages (rows). In Notion, databases are collections where each row is a page and columns are properties. Returns paginated results with metadata. Important requirements: - The database must be shared with your integration - Property names in sorts must match existing database properties exactly (case-sensitive) - For timestamp sorting, use 'created_time' or 'last_edited_time' (case-insensitive) - The start_cursor must be a valid UUID from a previous response's next_cursor field - Database IDs must be valid 32-character UUIDs (with or without hyphens) Use this action to: - Retrieve all or filtered database entries - Sort results by database properties or page timestamps - Paginate through large result sets - Get database content for processing or display

Action Parameters

database_id
stringRequired
page_size
integerDefaults to 100
sorts
start_cursor

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Query database with filter

Description

Tool to query a Notion database with server-side filtering, sorting, and pagination. Use when you need to retrieve a subset of rows by property, date, status, or other conditions.

Action Parameters

composio_execution_message
database_id
stringRequired
filter
page_size
sorts
start_cursor

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Query data source

Description

Tool to query a Notion data source. Use when you need to retrieve pages or child data sources with filters, sorts, and pagination. Make paginated requests using cursors and optional property filters for efficient data retrieval.

Action Parameters

data_source_id
stringRequired
filter
filter_properties
page_size
sorts
start_cursor

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Replace page content (with backup)

Description

Safely replaces a page's child blocks by optionally backing up current content, deleting existing children, then appending new children in batches. Use when you need to rebuild a page without leaving partial states. Notion does not provide atomic transactions; this tool orchestrates a multi-step workflow with optional backup to reduce risk.

Action Parameters

archive_existing_children
booleanDefaults to True
backup_parent
backup_title_suffix
stringDefaults to (backup)
create_backup
boolean
dry_run
boolean
new_children
arrayRequired
page_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Retrieve Comment

Description

Tool to retrieve a specific comment by its ID. Use when you have a comment ID and need to fetch its details.

Action Parameters

comment_id
stringRequired

Action Response

data
Required
error
successful
booleanRequired

Tool Name: Retrieve Database Property

Description

Tool to retrieve a specific property object of a Notion database. Use when you need to get details about a single database column/property.

Action Parameters

database_id
stringRequired
property_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Retrieve Notion file upload

Description

Tool to retrieve details of a Notion File Upload object by its identifier. Use when you need to check the status or details of an existing file upload.

Action Parameters

file_upload_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Search Notion page

Description

Searches Notion pages and databases by title; an empty query lists all accessible items, useful for discovering IDs or as a fallback when a specific query yields no results.

Action Parameters

direction
filter_property
stringDefaults to object
filter_value
Defaults to page
page_size
Defaults to 2
query
string
start_cursor
timestamp

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Send file upload

Description

Tool to transmit file contents to Notion for a file upload object. Use after creating a file upload object to send the actual file data.

Action Parameters

file
objectRequired
file_upload_id
stringRequired
part_number

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Update block

Description

Updates existing Notion block's text content. ⚠️ CRITICAL: Content limited to 2000 chars. Cannot change block type or archive blocks. Content exceeding 2000 chars will fail with validation error. For longer content, split across multiple blocks using add_multiple_page_content.

Action Parameters

additional_properties
block_id
stringRequired
block_type
stringRequired
content
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Update Page

Description

Update page properties, icon, cover, or archive status. IMPORTANT: Property names are workspace-specific and case-sensitive. Use NOTION_FETCH_ROW or NOTION_FETCH_DATABASE first to discover exact property names and valid select/status options. Common errors: - "X is not a property that exists": Discover properties with NOTION_FETCH_ROW - "Invalid status option": Check valid options with NOTION_FETCH_DATABASE - "should be defined": Wrap values: {'Field': {'type': value}} Property formats: title/rich_text use {'text': {'content': 'value'}}, select/status use {'name': 'option'}

Action Parameters

archived
cover
icon
page_id
stringRequired
properties

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Update Database Row (Page)

Description

Updates a specific row/page within a Notion database by its page UUID (row_id). IMPORTANT CLARIFICATION: This action updates INDIVIDUAL ROWS (pages) in a database, NOT the database structure. - To update a ROW/PAGE: Use THIS action with `row_id` (the page UUID) - To update DATABASE SCHEMA (columns, properties, title): Use NOTION_UPDATE_SCHEMA_DATABASE with `database_id` REQUIRED: `row_id` is MANDATORY. This is the UUID of the specific page/row to update. Do NOT pass `database_id` to this action - that parameter does not exist here. Common issues: (1) Use UUID from page URL, not the full URL (2) Ensure page is shared with integration (3) Match property names exactly as in database (4) Use 'status' type for Status properties, not 'select' (5) Retry on 409 Conflict errors (concurrent updates) Supports updating properties, icon, cover, or archiving the row.

Action Parameters

cover
delete_row
boolean
icon
properties
array
row_id
stringRequired

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Update database schema

Description

Updates an existing Notion database's schema including title, description, and/or properties (columns). IMPORTANT NOTES: - At least one update (title, description, or properties) must be provided - The database must be shared with your integration - Property names are case-sensitive and must match exactly - When changing a property to 'relation' type, you MUST provide the database_id of the target database - Removing properties will permanently delete that column and its data - Use NOTION_FETCH_DATA first to get the exact property names and database structure Common errors: - 'database_id' missing: Ensure you're passing the database_id parameter (not page_id) - 'data_source_id' undefined: When changing to relation type, database_id is required in PropertySchemaUpdate - Property name mismatch: Names must match exactly including case and special characters

Action Parameters

database_id
stringRequired
description
properties
array
title

Action Response

data
objectRequired
error
successful
booleanRequired

Tool Name: Upsert database rows

Description

Tool to upsert rows in a Notion database by querying for existing rows and creating or updating them. Use when you need to sync data to Notion without creating duplicates. Each item is matched by a filter, then either created (if no match) or updated (if match found). Supports bulk operations with per-item error handling.

Action Parameters

data_source_id
database_id
items
arrayRequired
options

Action Response

data
objectRequired
error
successful
booleanRequired