A tool for team collaboration and knowledge management.
A tool for team collaboration and knowledge management. On Nagent, Confluence is exposed as a fully-configurable team collaboration integration that any agent can call — 62 actions, 23 triggers, and OAUTH2, S2S_OAUTH2, API_KEY authentication. No code is required to wire Confluence into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use Confluence to automate the kinds of tasks team collaboration teams previously handled manually. Concrete examples — each one is a single agent step in Nagent — include:
Confluence also supports 4 event triggers ("New Attachment Added", "Blog Post Added to Label", "Blogpost Inline Comment Added", and more), which lets your Nagent agents react to Confluence activity in real time — for example, kicking off a downstream workflow the moment a relevant event fires.
Every action and trigger is paired with a structured input/output schema (visible in the sections below), so when you wire Confluence into Helix — our agentic agent builder — the editor knows exactly what each step expects and produces. Configure once, deploy anywhere across your Nagent agents.
Triggers are the entry points of agents built on Nagent — pick one to fire your agent the moment a Confluence event happens. Webhook triggers run instantly; poll triggers check on an interval you configure. Each shows its configuration parameters and the payload your agent receives.
CONFLUENCE_ATTACHMENT_ADDED_TRIGGERTriggers when a new attachment is uploaded to a Confluence page. Optionally filters by media type.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of attachments to check in each poll (1-200). Default is 25.
Filter attachments by MIME type (e.g., 'image/png', 'application/pdf'). Leave empty to monitor all types.
ID of the Confluence page to monitor for new attachments.
Payload
The newly added Confluence attachment
Type of event that occurred
CONFLUENCE_BLOG_POST_ADDED_TO_LABEL_TRIGGERTriggers when a new blog post is added to a specific label in Confluence.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
ID of the label to monitor for new blog posts.
Maximum number of blog posts to fetch in each poll. Default is 25, max is 250.
Payload
The newly added blog post to the label
Type of event that occurred
CONFLUENCE_BLOGPOST_INLINE_COMMENT_ADDED_TRIGGERTriggers when a new inline comment is added to a Confluence blog post.
Configuration
The ID of the blog post to monitor for new inline comments
The content format type for the comment body. Valid values: storage, atlas_doc_format.
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of inline comments to fetch per poll (default 25, max 250)
Payload
The newly added inline comment
Type of event that occurred
CONFLUENCE_BLOGPOST_LIKE_COUNT_CHANGED_TRIGGERTriggers when a Confluence blog post's like count changes (someone likes or unlikes).
Configuration
The unique ID of the Confluence blog post to monitor for like count changes. Use CONFLUENCE_GET_BLOG_POSTS to find blog post IDs.
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Payload
The ID of the blog post
The change in like count (positive for likes, negative for unlikes)
Current like count after the change
Type of event that occurred
Previous like count before the change
CONFLUENCE_BLOGPOST_UPDATED_TRIGGERTriggers when a Confluence blog post is updated (any edit that creates a new version).
Configuration
The unique ID of the Confluence blog post to monitor for updates. Use CONFLUENCE_GET_BLOG_POSTS to find blog post IDs.
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Payload
The updated blog post
Current version number after the update
Type of event that occurred
Previous version number before the update
CONFLUENCE_CONTENT_RESTRICTIONS_CHANGED_TRIGGERTriggers when view or edit restrictions change on a Confluence page or blog post. Detects user/group restrictions being added, removed, or modified.
Configuration
The unique ID of the Confluence page or blog post to monitor for restriction changes. Use CONFLUENCE_GET_PAGES or CONFLUENCE_GET_BLOG_POSTS to find content IDs.
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Payload
ID of the content whose restrictions changed
Current restrictions hash
Current restriction state
Type of event that occurred
Previous restrictions hash
Previous restriction state
Whether the restrictions hash changed
CONFLUENCE_FOOTER_COMMENT_ADDED_TRIGGERTriggers when a new footer comment is added to a Confluence page.
Configuration
The content format type for the comment body. Valid values: storage, atlas_doc_format.
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of footer comments to fetch per poll (default 25, max 250)
The ID of the page to monitor for new footer comments
Payload
The newly added footer comment
Type of event that occurred
CONFLUENCE_NEW_AUDIT_LOG_TRIGGERTriggers when a new audit log record is created in Confluence. Requires Confluence Standard/Premium/Enterprise plan and 'Confluence Administrator' permission.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of audit records to check in each poll (1-1000)
Optional search string to filter audit records by summary or category. Leave empty to monitor all audit records.
Payload
The newly created audit log record
Type of event that occurred
CONFLUENCE_NEW_BLOG_POST_CREATED_TRIGGERTriggers when a new blog post is created in Confluence. Optionally filters by space or status.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of blog posts to fetch in each poll (1-250). Default is 25.
Filter blog posts by specific space ID. Leave empty to monitor all spaces.
Filter blog posts by status (e.g., 'current', 'archived'). Leave empty to monitor all statuses.
Payload
The newly created blog post
Type of event that occurred
CONFLUENCE_NEW_CHILD_PAGE_TRIGGERTriggers when a new child page is created under a specific parent page in Confluence.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of child pages to check in each poll (1-250). Default is 25.
ID of the parent Confluence page to monitor for new child pages.
Payload
The newly created child page
Type of event that occurred
ID of the parent page under which the child was created
CONFLUENCE_NEW_CQL_CONTENT_MATCH_TRIGGERTriggers when new Confluence content appears that matches a user-provided CQL query.
Configuration
Confluence Query Language (CQL) query to search for content. Examples: 'label = "important"' (content with specific label), 'text ~ "API documentation"' (full-text search), 'type = page AND space = DEV' (pages in DEV space), 'type = blogpost AND lastModified > now("-7d")' (recent blog posts). The trigger will fire when new content matches this query.
Comma-separated list of properties to expand in the response. Common values: 'content.space', 'content.version', 'content.body.storage'. Note: Using body expansions may limit results to 25-50.
Whether to include results from archived spaces
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of results to fetch in each poll (1-250). Default is 25.
Payload
Type of event that occurred
The search result that newly matched the query
CONFLUENCE_NEW_TASK_CREATED_TRIGGERTriggers when a new task (action item) is created in Confluence.
Configuration
Filter tasks by specific blog post ID. Leave empty to monitor all blog posts.
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of tasks to fetch in each poll. Confluence caps at 250.
Filter tasks by specific page ID. Leave empty to monitor all pages.
Filter tasks by specific space ID. Leave empty to monitor all spaces.
Filter tasks by status (e.g., 'complete', 'incomplete'). Leave empty to monitor all statuses.
Payload
Type of event that occurred
The newly created task
CONFLUENCE_PAGE_CONTENT_PROPERTIES_CHANGED_TRIGGERTriggers when content properties on a Confluence page are added, removed, or updated.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of properties to fetch in each poll (1-200). Default is 100.
The ID of the Confluence page to monitor for content property changes. Use CONFLUENCE_GET_PAGES or CONFLUENCE_GET_PAGE_BY_ID to find page IDs.
Payload
List of properties that were added
Type of event that occurred
ID of the page whose properties changed
List of properties that were removed
List of properties that were updated with old and new values
CONFLUENCE_PAGE_CREATED_TRIGGERTriggers when a new page is created in Confluence. Optionally filters by space or status.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of pages to fetch in each poll (1-250). Default is 25.
Filter pages by specific space ID. Leave empty to monitor all spaces.
Filter pages by status (e.g., 'current', 'archived', 'deleted', 'trashed'). Leave empty to monitor all statuses.
Payload
Type of event that occurred
The newly created page
CONFLUENCE_PAGE_INLINE_COMMENT_ADDED_TRIGGERTriggers when a new inline comment is added to a Confluence page.
Configuration
The content format type for the comment body. Valid values: storage, atlas_doc_format.
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of inline comments to fetch per poll (default 25, max 250)
The ID of the page to monitor for new inline comments
Payload
The newly added inline comment
Type of event that occurred
CONFLUENCE_PAGE_LIKE_COUNT_CHANGED_TRIGGERTriggers when a Confluence page's like count changes (someone likes or unlikes).
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
The unique ID of the Confluence page to monitor for like count changes. Use CONFLUENCE_GET_PAGES to find page IDs.
Payload
The change in like count (positive for likes, negative for unlikes)
Current number of likes after the change
Type of event that occurred
The ID of the page whose like count changed
Previous number of likes before the change
CONFLUENCE_PAGE_MOVED_TRIGGERTriggers when a Confluence page is moved to a different location in the page hierarchy.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
The ID of the Confluence page to monitor for moves (e.g., '66304'). Use CONFLUENCE_GET_PAGES to find page IDs.
Payload
Type of event that occurred
New ancestor chain (ordered from root to immediate parent)
Previous ancestor chain (ordered from root to immediate parent)
ID of the page that was moved
CONFLUENCE_PAGE_UPDATED_TRIGGERTriggers when a Confluence page is updated (any edit that creates a new version).
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
The unique ID of the Confluence page to monitor for updates. Use CONFLUENCE_GET_PAGES to find page IDs.
Payload
Current version number after the update
Type of event that occurred
The updated page
Previous version number before the update
CONFLUENCE_PAGE_VERSION_CREATED_TRIGGERTriggers when a new version is created for a specific Confluence page.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of versions to fetch in each poll (1-200). Default is 25.
The ID of the page to monitor for new versions.
Payload
Type of event that occurred
The newly created page version
CONFLUENCE_SPACE_CONTENT_ADDED_TRIGGERTriggers when new content (pages or blog posts) is added to a Confluence space. Attachments are not supported at space level; use the 'New Attachment Added' trigger instead.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of items to check in each poll (1-200). Default is 25.
Numeric ID of the Confluence space to monitor for new content. Leave empty to monitor all spaces.
Status of the content to monitor ('current', 'trashed', 'draft', 'historical'). Default is 'current'.
Type of content to monitor: 'page' or 'blogpost'. Leave empty to monitor all types (pages and blogposts). Note: Attachments are not supported at space level; use the 'New Attachment Added' trigger instead.
Payload
The newly added Confluence content
Type of event that occurred
CONFLUENCE_SPACE_CREATED_TRIGGERTriggers when a new Confluence space is created. Optionally filters by space type or status.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of spaces to check in each poll (1-200). Default is 25.
Filter by space type: 'global', 'personal', or 'collaboration'. Leave empty to monitor all types.
Filter by space status: 'current' or 'archived'. Leave empty to monitor all statuses.
Payload
Type of event that occurred
The newly created Confluence space
CONFLUENCE_SPACE_DETAILS_CHANGED_TRIGGERTriggers when a Confluence space's details change (name, description, status, owner, icon, etc.).
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
The numeric ID of the Confluence space to monitor for changes (e.g., '196612'). Use CONFLUENCE_GET_SPACES to find space IDs.
Payload
Dictionary of changed fields with 'old' and 'new' values
Type of event that occurred
The updated Confluence space details
CONFLUENCE_SPACE_PROPERTIES_CHANGED_TRIGGERTriggers when properties on a Confluence space are added, removed, or updated.
Configuration
Periodic Interval to Check for Updates & Send a Trigger in Minutes
Maximum number of properties to fetch in each poll (1-200). Default is 100.
The ID of the Confluence space to monitor for property changes. Use CONFLUENCE_GET_SPACES to find space IDs.
Payload
List of properties that were added
Type of event that occurred
List of properties that were removed
ID of the space whose properties changed
List of properties that were updated with old and new values
Every operation an agent can call against Confluence, with input parameters and output schema. Drop these into any step of an agent built in Helix.
CONFLUENCE_ADD_CONTENT_LABELTool to add labels to a piece of content. Use after obtaining the content ID to tag pages or blog posts with metadata labels.
Input parameters
Identifier of the Confluence content (page or blog post) to label.
List of labels to add to the content. Each element must be an object with `prefix` (one of `global`, `team`, or `my`) and `name` (lowercase alphanumeric/hyphenated string) fields — e.g., `{'prefix': 'global', 'name': 'my-label'}`. Passing plain strings or omitting `prefix` causes schema validation errors.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_CQL_SEARCHSearches for content in Confluence using Confluence Query Language (CQL). CQL is a powerful query language that allows you to search across all Confluence content with advanced filtering capabilities including: - Full-text search: `text ~ "search term"` - searches within page content - Title search: `title ~ "meeting notes"` - searches page titles - Label filtering: `label = "important"` - filters by labels - Space filtering: `space = DEV` - limits search to specific spaces - Type filtering: `type = page` or `type = blogpost` - filters by content type - Creator filtering: `creator = currentUser()` - filters by content creator - Date filtering: `lastModified > now("-7d")` - filters by modification date - Combined queries: `text ~ "api" AND space = DOCS AND type = page` This action uses the Confluence REST API v1 search endpoint which fully supports CQL.
Input parameters
Confluence Query Language (CQL) query for searching content. CQL allows searching by content text, title, labels, creator, type, space, and more. Examples: 'text ~ "search term"' (full-text search), 'label = "important"' (search by label), 'type = page AND space = DEV' (pages in DEV space), 'creator = currentUser()' (content by current user), 'title ~ "meeting notes" AND lastModified > now("-7d")' (recent pages with title matching). Supported fields: text, title, label, space, type, creator, contributor, created, lastModified, ancestor, content, id. Supported operators: = (equals), != (not equals), ~ (contains), !~ (does not contain), > < >= <= (comparisons), IN, NOT IN. Keywords: AND, OR, NOT, ORDER BY.
Maximum number of results to return (max 250, but may be limited to 25-50 when using body expansions)
Starting index for pagination (0-based)
Comma-separated list of properties to expand in the response. Common values: 'content.space', 'content.version', 'content.body.storage', 'content.body.view'. Note: Using body expansions may limit results to 25-50.
The type of excerpt to return. Default is 'highlight'.
Whether to include results from archived spaces
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_CREATE_BLOGPOSTTool to create a new Confluence blog post. Use when you need to publish content in a specific space. Response includes `data.id` for the post ID and `data._links.base` + `data._links.webui` for the URL.
Input parameters
Content body of the blog post. Must be a dict with `representation` set to `'storage'` and `value` containing valid Confluence storage format markup (XML-based). Raw markdown or plain strings will cause validation errors.
The title of the new blog post.
Status of the blog post. Use `'current'` to publish immediately (publicly visible) or `'draft'` to save as private draft.
ID of the space where the blog post will be created.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_CREATE_BLOGPOST_PROPERTYTool to create a property on a specified blog post. Use when you need to add custom metadata to a blog post. Creates a new property with a key-value pair on a specified Confluence blog post. This allows users to add custom metadata relevant to the blog post.
Input parameters
Identifier of the Confluence blog post to add the property to.
Unique key for the blog post property.
JSON string representing the value of the blog post property.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_CREATE_CONTENT_PROPERTY_FOR_WHITEBOARDTool to create a new content property on a whiteboard. Use when you need to attach custom metadata to a Confluence whiteboard.
Input parameters
Key/name of the property to create.
JSON string representing the value of the content property.
ID of the whiteboard to add the property to.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_CREATE_FOOTER_COMMENTTool to create a footer comment on a Confluence page, blog post, attachment, or custom content. Use when you need to add a comment without editing the page body itself.
Input parameters
The body content of the comment with representation format and value.
ID of the page to comment on. Provide one of: pageId, blogPostId, attachmentId, or customContentId.
ID of the blog post to comment on. Provide one of: pageId, blogPostId, attachmentId, or customContentId.
ID of the attachment to comment on. Provide one of: pageId, blogPostId, attachmentId, or customContentId.
ID of the custom content to comment on. Provide one of: pageId, blogPostId, attachmentId, or customContentId.
ID of the parent comment. Provide this to create a reply to an existing comment.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_CREATE_PAGETool to create a new Confluence page in a specified space. Use when you need to create new documentation or content.
Input parameters
Wrapper for page body content.
Title of the new page. Title uniqueness is scoped per parent: duplicates are allowed under different parents but not under the same parent.
ID or key of the space where the page will be created. Can be a numeric space ID (e.g., '12345678') or a space key (e.g., 'DOCS', 'TEAM'). Space keys are automatically converted to IDs.
ID of the parent page. If omitted, the Confluence API will automatically place the page under the space's homepage. Provide this to create the page as a child of a specific page. Must be a numeric page ID only — page titles and page keys are not accepted and will cause errors. Obtain numeric IDs via list or search APIs.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_CREATE_PAGE_PROPERTYTool to create a property on a Confluence page. Use when you need to add custom metadata or settings to a page.
Input parameters
Key/name of the property to create.
Value of the property as a JSON string. Can represent any JSON type (string, number, object, array).
ID of the page to create a property for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_CREATE_PRIVATE_SPACETool to create a private Confluence space. Use when you need an isolated workspace viewable only by its creator.
Input parameters
A unique key for the private space; must be unique and <=255 characters. Must be alphanumeric only (no hyphens, underscores, or spaces).
The name of the private space, visible only to its creator.
Container for the plain-text description.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_CREATE_SPACETool to create a new Confluence space. Use when setting up a new knowledge area for organization. Must include a `plain.representation` field, e.g., `{"plain": {"representation": "plain", "value": "text here"}}`. Omitting this field causes a 400 error.
Input parameters
A unique key for the space. Must be alphanumeric characters only (letters and numbers), up to 255 characters. Underscores and hyphens are not allowed.
Human-readable name for the space.
Type of the space, either 'global' or 'personal'.
Optional metadata for the space as a JSON string.
Description object for a Confluence space.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_CREATE_SPACE_PROPERTYTool to create a new property on a Confluence space. Use after confirming the space ID when adding custom metadata.
Input parameters
Unique key for the space property.
JSON string representing the value of the space property.
ID of the space to add the property to.
Optional version metadata for the new property.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_CREATE_WHITEBOARDTool to create a new Confluence whiteboard. Use when you need to start a collaborative whiteboard session.
Input parameters
Title of the whiteboard.
ID of the space where the whiteboard will be created.
ID of the parent content under which the whiteboard will be created.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_DELETE_BLOGPOST_PROPERTYTool to delete a blog post property. Use when you need to remove custom metadata from a specified blog post.
Input parameters
ID of the Confluence blog post containing the property.
The ID of the blog post property to delete. Can be a numeric ID or a property key string.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_DELETE_CONTENT_PROPERTY_FOR_PAGE_BY_IDTool to delete a content property from a page by property ID. Use when you need to remove custom metadata from a page for cleanup or auditing. This action deletes a specified content property from a Confluence page using its page ID and property ID. It is useful for removing outdated or unnecessary metadata.
Input parameters
ID of the Confluence page from which to delete the property.
The ID of the content property to delete from the page. Can be a numeric ID or a property key string.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_DELETE_CONTENT_PROPERTY_FOR_WHITEBOARD_BY_IDTool to delete a content property from a whiteboard by property ID. Use when you need to remove custom metadata from a whiteboard.
Input parameters
The ID of the property to delete from the whiteboard. Can be a numeric ID or a property key string.
ID of the whiteboard from which to delete the property.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_DELETE_PAGETool to delete a Confluence page. Use with caution as this permanently removes the page and its content with no recovery option. In move or migration workflows, confirm all target pages were successfully created before deleting source pages — partial creation failures combined with deletion result in unrecoverable data loss.
Input parameters
ID of the page to delete.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_DELETE_SPACETool to delete a Confluence space by its key. Use when you need to permanently remove a space.
Input parameters
Key of the space to delete.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_DELETE_SPACE_PROPERTYTool to delete a space property. Use when you need to remove a property from a Confluence space after review.
Input parameters
The ID of the space property to delete. Can be a numeric ID or a property key string.
The numeric Long ID of the space containing the property. Must be a numeric space ID, not a space key or UUID.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_DOWNLOAD_ATTACHMENTDownloads an attachment from a Confluence page and returns a publicly accessible S3 URL. Use this when you need to share the attachment with users who don't have Confluence access. First use get_attachments to list attachments and get the attachment ID.
Input parameters
ID of the Confluence page that contains the attachment.
ID of the attachment to download (e.g., 'att65825').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_ATTACHMENT_LABELSTool to list labels on an attachment. Use after confirming the attachment ID to fetch its labels.
Input parameters
Identifier of the Confluence attachment to retrieve labels for.
Sort the result by a particular field.
Maximum number of labels to return per page (1-250).
Opaque cursor for pagination. Returned in the Link response header for fetching the next page.
Filter labels by their prefix.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_ATTACHMENTSTool to retrieve attachments of a Confluence page. Use after confirming page ID to list its attachments (supports pagination).
Input parameters
Maximum number of attachments to return per page. Confluence caps at 200.
Zero-based index of the first item to return (pagination offset).
ID of the Confluence page whose attachments will be retrieved.
Filter attachments by MIME type (e.g., 'image/png', 'application/pdf').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_AUDIT_LOGSTool to retrieve Confluence audit records. Use when you need to fetch and filter audit logs for compliance or troubleshooting.
Input parameters
Maximum number of audit records to return per page.
Zero-based index of the first audit record to return (pagination offset).
End of the audit record timestamp range (epoch time in milliseconds).
Start of the audit record timestamp range (epoch time in milliseconds).
Free-text search to filter audit records by summary or category.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_BLOGPOST_BY_IDTool to retrieve a specific Confluence blog post by its ID. Use when you have a blog post ID and need detailed metadata and content.
Input parameters
Unique identifier of the Confluence blog post to retrieve.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_BLOGPOST_LABELSTool to retrieve labels of a specific Confluence blog post by ID. Use after obtaining the blog post ID to list its labels.
Input parameters
Identifier of the Confluence blog post to retrieve labels for.
Maximum number of labels to return per page.
Zero-based index of the first label to return (pagination offset).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_BLOGPOST_LIKE_COUNTTool to get like count for a Confluence blog post. Use after confirming the blog post ID to retrieve total likes.
Input parameters
Identifier of the Confluence blog post to retrieve like count for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_BLOGPOST_OPERATIONSTool to retrieve permitted operations for a Confluence blog post. Use after confirming the blog post ID to see allowed actions.
Input parameters
Identifier of the Confluence blog post to query operations for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_BLOG_POSTSTool to retrieve a list of blog posts. Use when you need a paginated list of Confluence blog posts.
Input parameters
Maximum number of items to return per page.
Opaque pagination cursor for fetching the next page of results.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_BLOG_POSTS_FOR_LABELTool to list all blog posts under a specific label. Use when you have a label ID and need to retrieve associated blog posts.
Input parameters
ID of the label to retrieve blog posts for.
Maximum number of items to return per page.
Opaque pagination cursor for fetching the next page of results.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_BLOGPOST_VERSION_DETAILSTool to retrieve details for a specific version of a blog post. Use when you have a blogpostId and versionNumber and need detailed metadata for that version.
Input parameters
Unique identifier of the Confluence blog post.
Version number of the blog post to retrieve.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_BLOGPOST_VERSIONSTool to retrieve all versions of a specific blog post. Use when you have a blogpostId and need to list version numbers.
Input parameters
Maximum number of version items to return per page.
Cursor for pagination. Use value from previous response to fetch next page.
The unique identifier of the Confluence blog post.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_CHILD_PAGESTool to list all direct child pages of a given Confluence page. Use when you have a parent page ID and need to discover its direct descendants. Response nests child page data under `data.data.results`; unwrap this before iterating. Paginate using `_links.next` cursor until no further results to avoid missing children.
Input parameters
ID of the Confluence page to retrieve child pages for. Returned child page IDs may be non-numeric strings; do not assume integer format when storing or passing to subsequent calls.
Sort order options for child pages.
Maximum number of items to return per page. Maximum cap is 100. Paginate until `_links.next` is absent to ensure all children are retrieved.
Cursor for pagination. Use the cursor from the previous response's _links.next to get the next page of results.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_CONTENT_PROPERTIES_FOR_BLOG_POSTTool to retrieve all content properties on a blog post. Use when you need to list metadata properties set on a specific Confluence blog post.
Input parameters
Maximum number of properties to return per page.
Zero-based index of the first property to return (pagination offset).
Identifier of the Confluence blog post to retrieve properties for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_CONTENT_PROPERTIES_FOR_PAGETool to retrieve all content properties on a page. Use when you need to list metadata properties set on a specific Confluence page.
Input parameters
Maximum number of properties to return per page (max 200).
Opaque pagination cursor for fetching the next page of results.
Identifier of the Confluence page to retrieve properties for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_CONTENT_RESTRICTIONSTool to retrieve restrictions on a Confluence content item. Use when you need to see who can view or edit a page or blog post.
Input parameters
ID of the content to retrieve restrictions for.
Comma-separated properties to expand in the response, e.g., \['restrictables.operation', 'user'\]
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_CURRENT_USERTool to get information about the currently authenticated user — always scoped to the account tied to the configured connection, not arbitrary users. Use CONFLUENCE_SEARCH_USERS to look up other users. Response contains nested metadata; key fields include accountId, displayName, and email for use in downstream logic.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_INLINE_COMMENTS_FOR_BLOG_POSTTool to retrieve inline comments for a Confluence blog post. Use when you need inline comment details by blog post ID.
Input parameters
Unique identifier of the blog post to retrieve inline comments for.
Sort order for results. Use '-' prefix for descending order.
Maximum number of inline comments to return per page (default 25, max 250).
Cursor for pagination. Use the cursor from _links.next in the previous response to get the next page.
The content format type for the comment body. Valid values: storage, atlas_doc_format.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_LABELSTool to retrieve all labels in a Confluence site; use for label discovery when you need to list or page through labels. For label-based filtering, use CONFLUENCE_GET_LABELS_FOR_PAGE or CONFLUENCE_GET_LABELS_FOR_SPACE_CONTENT instead.
Input parameters
Maximum number of labels to return per page.
Zero-based index of the first label to return (pagination offset).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_LABELS_FOR_PAGETool to retrieve labels of a specific Confluence page by ID. Labels are returned in `data.results\[*\].name` and are not available in CONFLUENCE_GET_PAGES responses. Use after obtaining the page ID to list its labels. Paginate using `start` and `limit` to avoid missing labels when count exceeds 25.
Input parameters
Identifier of the Confluence page to retrieve labels for.
Maximum number of labels to return per page.
Zero-based index of the first label to return (pagination offset). Increment by `limit` value iteratively to paginate through all labels; omitting pagination will miss labels beyond the first 25.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_LABELS_FOR_SPACETool to list labels on a space. Use when you need to retrieve labels for a specific space.
Input parameters
ID of the space to retrieve labels for (numeric space ID).
Sort order for results. Use '-' prefix for descending order.
Maximum number of labels to return per page (default 25, max 250).
Cursor for pagination. Use the cursor from the previous response to get the next page.
Filter labels by prefix.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_LABELS_FOR_SPACE_CONTENTTool to list labels on all content in a space. Use when you need to retrieve or filter content labels by space, with pagination and optional prefix filtering. For label discovery across a space before per-page filtering, use this tool first, then CONFLUENCE_GET_LABELS_FOR_PAGE; CONFLUENCE_SEARCH_CONTENT does not filter by labels.
Input parameters
The ID of the space to list content labels for.
Maximum number of labels to return per page.
Zero-based index of the first label to return (pagination offset).
Filter labels by this prefix (e.g., 'global', 'page-').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_PAGE_ANCESTORSTool to retrieve all ancestors for a given Confluence page by its ID. Use when you need the full page hierarchy.
Input parameters
ID of the Confluence page to retrieve ancestors for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_PAGE_BY_IDTool to retrieve a Confluence page by its ID. Use when you have a page ID and need its detailed metadata and content. Response body is in `body.storage.value` as Confluence storage format (HTML); strip tags before plain-text use. Before calling CONFLUENCE_UPDATE_PAGE, fetch the latest version here — that tool requires `version.number` = current + 1, else a 409 conflict occurs.
Input parameters
Numeric Long ID of the Confluence page to retrieve. Must be a numeric long value, not a UUID or string identifier. Accepts both 'id' and 'page_id' parameter names for compatibility.
Whether to return the draft version (default: false).
Specific page version to retrieve (default: latest).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_PAGE_FOOTER_COMMENTSTool to retrieve footer (non-inline) comments for a Confluence page. Use when you need to collect review feedback left as standard page comments.
Input parameters
Unique identifier of the page to retrieve footer comments for.
Sort order for results. Use '-' prefix for descending order.
Maximum number of footer comments to return per page (default 50, max 250).
Cursor for pagination. Use the cursor from _links.next in the previous response to get the next page.
Filter comments by status. Can include multiple statuses.
The content format type for the comment body. Valid values: storage, atlas_doc_format.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_PAGE_INLINE_COMMENTSTool to retrieve inline comments for a Confluence page. Use when you need inline comment details by page ID.
Input parameters
Numeric ID of the page to retrieve inline comments for.
Sort order for results. Use '-' prefix for descending order.
Maximum number of inline comments to return per page (default 25, max 250).
Cursor for pagination. Use the cursor from _links.next in the previous response to get the next page.
Filter comments by status. Pass an array of status values.
The content format type for the comment body. Valid values: storage, atlas_doc_format.
Filter comments by resolution status. Pass an array of resolution status values (e.g., 'open', 'resolved').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_PAGE_LIKE_COUNTTool to get like count for a Confluence page. Use after confirming the page ID to retrieve total likes.
Input parameters
Identifier of the Confluence page to retrieve like count for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_PAGESTool to retrieve a paginated list of Confluence pages. Results are permission-scoped to the authenticated user; empty results may reflect access restrictions. Omitting filters like spaceId or status can return unexpectedly broad result sets. Labels are not included in results; use CONFLUENCE_GET_LABELS_FOR_PAGE for label data. Timestamps are ISO 8601 UTC strings.
Input parameters
Sort order for Confluence pages using AbstractPageSortOrder enum values.
Maximum number of pages to return per page. Confluence caps at 250.
Filter by page title (exact match).
Opaque pagination cursor. Use the 'next' link from a previous response to continue. Iterate until no 'next' link is returned to avoid silently missing pages.
Filter by page status. Allowed values: current, archived, deleted, trashed.
Filter by page subtype. Valid values: live, page.
Filter by space ID(s). Provide a single ID or a list of IDs.
Body representation to include in results. Allowed values: 'storage' (storage format) or 'atlas_doc_format' (Atlas document format). The value 'view' is not supported.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_PAGE_VERSIONSTool to retrieve all versions of a specific Confluence page. Use to audit edit history or to get the latest version.number before calling CONFLUENCE_UPDATE_PAGE — using a stale version.number causes a 409 Conflict error.
Input parameters
The unique identifier of the Confluence page. String format; differs from the numeric long expected by CONFLUENCE_GET_PAGE_BY_ID.
Maximum number of versions to return per page (pagination limit). Older versions are silently omitted if pagination is not followed; iterate with start and limit to retrieve full history.
Zero-based index of the first version to return (pagination offset).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_SPACE_BY_IDTool to retrieve a Confluence space by its ID. Use when you need detailed metadata of a specific space. Space names are non-unique; use the numeric spaceId or spaceKey from the response for stable identification in downstream operations such as CONFLUENCE_GET_SPACE_PROPERTIES, CONFLUENCE_GET_LABELS_FOR_SPACE, CONFLUENCE_GET_SPACE_CONTENTS, and CONFLUENCE_CREATE_BLOGPOST.
Input parameters
The numeric space ID (e.g., '557060'). This is NOT the space key (e.g., 'GTS'). Use CONFLUENCE_GET_SPACES to find a space's numeric ID from its key.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_SPACE_CONTENTSTool to retrieve content in a Confluence space. Use when you need to list pages, blogposts, or attachments of a specific space key. Results are in data.results (not data.page.results). Paginate via start/limit (max 200/request); follow response._links.next until absent to avoid missing content. Only returns content accessible to the authenticated user — missing items may indicate permission restrictions. Atlassian Cloud enforces HTTP 429 rate limits; throttle to ~1–2 requests/second, honor Retry-After headers, and cap start ≤ 1000 for large spaces. Construct item URLs by combining data._links.base with each item's _links.webui.
Input parameters
Type of content to return (e.g., 'page', 'blogpost', 'attachment').
Maximum number of items to return per page. Confluence caps at 200.
Zero-based index of the first item to return (pagination offset).
Status of the content to return ('current', 'trashed', 'draft', 'historical').
Key of the space to retrieve content from.
For blogposts, filter by publish date (ISO date, yyyy-MM-dd).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_SPACE_PROPERTIESTool to get properties of a Confluence space. Use when you need to retrieve custom metadata or settings stored as space properties.
Input parameters
ID of the space to get properties for.
Filter by property key(s). If not provided, returns all properties.
Maximum number of properties to return per page. Confluence caps at 200.
Zero-based index of the first item to return (pagination offset).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_SPACESTool to retrieve a paginated list of Confluence spaces with optional filtering. Paginate by incrementing `start` in steps of `limit` until fewer results than `limit` are returned. Results are scoped to spaces visible to the authenticated user; absent spaces may be restricted rather than nonexistent. Use `spaceKey` or numeric space ID (not display name) for stable identification in downstream calls. Combined filters apply as AND logic — relax filters before concluding a space is missing.
Input parameters
Type of space: 'global' or 'personal'.
Filter by labels; spaces must have at least one of these labels.
Maximum number of spaces to return per page. Confluence caps at 200.
Zero-based index of the first item to return (pagination offset).
Properties to expand in response (e.g., 'description', 'icon', 'metadata').
Status of space: 'current' (active) or 'archived'.
Filter by space key(s); accepts one or more space keys. Accepts canonical space keys only, not display names; if only a display name is known, list all spaces and filter client-side.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_TASKSTool to list Confluence tasks (action items) with filtering by assignee, creator, space, page, blog post, status, and dates. Use when you need to retrieve user action items without unreliable keyword searching for "TODO".
Input parameters
Maximum number of tasks to return per page. Confluence caps at 250.
Opaque pagination cursor. Use the 'next' link from a previous response to continue.
Filter tasks by status (e.g., 'complete', 'incomplete').
Filter by page ID(s). Provide a single ID or a list of IDs.
Filter by specific task ID(s). Provide a single ID or a list of IDs.
Filter by space ID(s). Provide a single ID or a list of IDs.
Filter by task creator(s). Provide Atlassian account ID(s).
Filter by task assignee(s). Provide Atlassian account ID(s).
Filter by blog post ID(s). Provide a single ID or a list of IDs.
Body representation to include in task results. Allowed values: 'storage' (storage format) or 'atlas_doc_format' (Atlas document format).
Filter by who completed the task(s). Provide Atlassian account ID(s).
Whether to include tasks that have no content or are blank.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_GET_USER_ANONYMOUSTool to retrieve information about the anonymous user. Use when you need to obtain guest user details before unauthenticated interactions.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_SEARCH_CONTENTSearches for content by filtering pages from the Confluence v2 API with intelligent ranking. Since the native search endpoint is deprecated, this action: 1. Fetches pages from the v2 pages endpoint with pagination (up to 300 pages) 2. Applies intelligent client-side filtering with relevance scoring 3. Returns results ranked by match quality (exact phrase > all words > partial matches). NOTE: Only page titles are searched — queries matching only body content return no results. Results omit full body content and canonical URLs; use CONFLUENCE_GET_PAGE_BY_ID for complete page data. Cannot filter by author, date, or labels. Results reflect only pages accessible to the authenticated user. When multiple pages share similar titles, verify the correct page via spaceId or pageId before performing writes.
Input parameters
Maximum number of results to return
Search query to find matching pages. The search will look for this text in page titles with intelligent matching including: (1) Exact phrase matches (highest priority), (2) All words present anywhere in title (medium priority), (3) Partial word matches (lowest priority). Search is case-insensitive and supports multiple words.
Starting index for pagination
Comma-separated list of properties to expand in the response
Limit search to a specific space by space key (will be added to CQL query) Results are not strictly scoped to this space; inspect spaceId in returned results to confirm scope.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_SEARCH_USERSSearches for users using user-specific queries from the Confluence Query Language (CQL).
Input parameters
Maximum number of users per result to return
Used for pagination. The cursor for the next page of results.
Filter by user account ID
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_UPDATE_BLOGPOSTTool to update a Confluence blog post's title or content. Use when you need to modify an existing blog post. Ensure you have the latest version number before calling.
Input parameters
ID of the blog post to update.
New content for the blog post body. Provide the body in storage format.
New title for the blog post.
Status of the blog post. Defaults to 'current' if not provided.
ID of the space containing the blog post.
Version object containing the new version number and optional metadata.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_UPDATE_BLOGPOST_PROPERTYTool to update a property of a specified blog post. Use when you need to modify custom metadata on a blog post.
Input parameters
ID of the Confluence blog post to update.
New JSON string value for the specified property.
The ID of the blog post property to update. Can be a numeric ID or a property key string.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_UPDATE_CONTENT_PROPERTY_FOR_PAGE_BY_IDTool to update a content property on a Confluence page. Use when you need to modify an existing metadata property by its ID.
Input parameters
New JSON string value for the specified property.
ID of the Confluence page to update the property on.
ID of the content property to update on the page. Can be a numeric ID or a property key string.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_UPDATE_CONTENT_PROPERTY_FOR_WHITEBOARD_BY_IDTool to update a content property on a whiteboard. Use when you need to modify metadata on a Confluence whiteboard.
Input parameters
New JSON string value for the specified content property.
ID of the content property to update on the whiteboard. Can be a numeric ID or a property key string.
ID of the Confluence whiteboard containing the property to update.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_UPDATE_PAGETool to update an existing Confluence page, replacing the entire page content. Use when you need to modify existing documentation or content.
Input parameters
ID of the page to update. Must be a string; convert from numeric IDs returned by CONFLUENCE_GET_PAGE_BY_ID before passing.
Updated content body of the page. Requires 'value' (the content in the specified format) and 'representation' (either 'storage' for Confluence storage format/XHTML, or 'atlas_doc_format' for Atlassian Document Format/ADF). Replaces the entire page content — always send complete desired content. Provide exactly one representation key (`storage`, `atlas_doc_format`, or `wiki`) whose value matches the `representation` field; mismatched or multiple keys cause validation errors. Storage format requires valid XHTML/XML; malformed markup causes validation errors.
Updated title of the page. IMPORTANT: Confluence enforces unique page titles within each space. If you change the title to one that already exists in the same space, the update will fail with a 'page with this title already exists' error. To avoid this, either keep the existing title, choose a unique title, or first rename/delete the conflicting page.
ID of the space containing the page. Optional if the page's space doesn't need to be changed.
Version information for the update. Must include `number` set to exactly current_version + 1. Fetch the current version via CONFLUENCE_GET_PAGE_BY_ID before updating. On a 409 conflict, refetch the latest version and retry.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_UPDATE_SPACE_PROPERTYTool to update a space property. Use when you need to modify custom metadata stored on a Confluence space (requires fetching the current property version first).
Input parameters
New JSON string value for the specified space property.
The ID of the space the property belongs to.
The ID of the space property to update. Can be a numeric ID or a property key string.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
CONFLUENCE_UPDATE_TASKTool to update a Confluence task status. Use when you need to mark tasks as complete or incomplete in workflows or dashboards.
Input parameters
ID of the task to update.
Status of the task.
Optional body format for the response.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
No publicly available marketplace agent is found using this tool yet. There are 40 agents privately built on Nagent that already use Confluence.
Build on Nagent
Connect Confluence to any Nagent agent in minutes — no API key management, no boilerplate. Just configure and deploy.
The five questions agent builders ask before adopting a new integration.
Open the External Integrations panel inside Nagent (app.nagent.ai/externalIntegration), find Confluence, and click "Connect Now." You'll authenticate with OAUTH2, S2S_OAUTH2, API_KEY — Nagent handles credential storage and refresh automatically. Once connected, Confluence is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once Confluence is connected, you configure its 62 actions and 23 triggers directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop Confluence steps into any workflow visually. Pick an action (e.g., one of those listed above), fill in the inputs (Helix knows the required vs. optional schema for each parameter), and connect it to upstream/downstream steps. Triggers run as the entry point of an agent, so when a Confluence event fires, the agent kicks off automatically.
Every Confluence action and trigger ships with a fully-typed schema — input parameters with name, type, required flag, and description, plus the output payload shape. The schemas are documented in the sections above. Helix uses these schemas to validate your configuration at build time and to type-check the data flowing between steps.
Yes. While Confluence ships with 62 pre-built team collaboration actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching Confluence together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build Confluence-based workflows tailored to your business.