Confluence
Interact with Confluence
Confluence is Atlassian's powerful team collaboration and knowledge management platform. It serves as a centralized workspace where teams can create, organize, and share information across departments and organizations.
With Confluence, you can:
- Create structured documentation: Build comprehensive wikis, project plans, and knowledge bases with rich formatting
- Collaborate in real-time: Work together on documents with teammates, with comments, mentions, and editing capabilities
- Organize information hierarchically: Structure content with spaces, pages, and nested hierarchies for intuitive navigation
- Integrate with other tools: Connect with Jira, Trello, and other Atlassian products for seamless workflow integration
- Control access permissions: Manage who can view, edit, or comment on specific content
In Sim, the Confluence integration enables your agents to access and leverage your organization's knowledge base. Agents can retrieve information from Confluence pages, search for specific content, and even update documentation when needed. This allows your workflows to incorporate the collective knowledge stored in your Confluence instance, making it possible to build agents that can reference internal documentation, follow established procedures, and maintain up-to-date information resources as part of their operations.
Integrate Confluence into the workflow. Can read, create, update, delete pages, manage comments, attachments, labels, and search content.
Retrieve content from Confluence pages using the Confluence API.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
pageId | string | Yes | Confluence page ID to retrieve |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of retrieval |
pageId | string | Confluence page ID |
content | string | Page content with HTML tags stripped |
title | string | Page title |
Update a Confluence page using the Confluence API.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
pageId | string | Yes | Confluence page ID to update |
title | string | No | New title for the page |
content | string | No | New content for the page in Confluence storage format |
version | number | No | Version number of the page (required for preventing conflicts) |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of update |
pageId | string | Confluence page ID |
title | string | Updated page title |
success | boolean | Update operation success status |
Create a new page in a Confluence space.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
spaceId | string | Yes | Confluence space ID where the page will be created |
title | string | Yes | Title of the new page |
content | string | Yes | Page content in Confluence storage format (HTML) |
parentId | string | No | Parent page ID if creating a child page |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of creation |
pageId | string | Created page ID |
title | string | Page title |
url | string | Page URL |
Delete a Confluence page (moves it to trash where it can be restored).
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
pageId | string | Yes | Confluence page ID to delete |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of deletion |
pageId | string | Deleted page ID |
deleted | boolean | Deletion status |
Search for content across Confluence pages, blog posts, and other content.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
query | string | Yes | Search query string |
limit | number | No | Maximum number of results to return (default: 25) |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of search |
results | array | Search results |
Add a comment to a Confluence page.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
pageId | string | Yes | Confluence page ID to comment on |
comment | string | Yes | Comment text in Confluence storage format |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of creation |
commentId | string | Created comment ID |
pageId | string | Page ID |
List all comments on a Confluence page.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
pageId | string | Yes | Confluence page ID to list comments from |
limit | number | No | Maximum number of comments to return (default: 25) |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of retrieval |
comments | array | List of comments |
Update an existing comment on a Confluence page.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
commentId | string | Yes | Confluence comment ID to update |
comment | string | Yes | Updated comment text in Confluence storage format |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of update |
commentId | string | Updated comment ID |
updated | boolean | Update status |
Delete a comment from a Confluence page.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
commentId | string | Yes | Confluence comment ID to delete |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of deletion |
commentId | string | Deleted comment ID |
deleted | boolean | Deletion status |
Upload a file as an attachment to a Confluence page.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
pageId | string | Yes | Confluence page ID to attach the file to |
file | file | Yes | The file to upload as an attachment |
fileName | string | No | Optional custom file name for the attachment |
comment | string | No | Optional comment to add to the attachment |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of upload |
attachmentId | string | Uploaded attachment ID |
title | string | Attachment file name |
fileSize | number | File size in bytes |
mediaType | string | MIME type of the attachment |
downloadUrl | string | Download URL for the attachment |
pageId | string | Page ID the attachment was added to |
List all attachments on a Confluence page.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
pageId | string | Yes | Confluence page ID to list attachments from |
limit | number | No | Maximum number of attachments to return (default: 25) |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of retrieval |
attachments | array | List of attachments |
Delete an attachment from a Confluence page (moves to trash).
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
attachmentId | string | Yes | Confluence attachment ID to delete |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of deletion |
attachmentId | string | Deleted attachment ID |
deleted | boolean | Deletion status |
List all labels on a Confluence page.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
pageId | string | Yes | Confluence page ID to list labels from |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of retrieval |
labels | array | List of labels |
Get details about a specific Confluence space.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
spaceId | string | Yes | Confluence space ID to retrieve |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of retrieval |
spaceId | string | Space ID |
name | string | Space name |
key | string | Space key |
type | string | Space type |
status | string | Space status |
url | string | Space URL |
List all Confluence spaces accessible to the user.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Confluence domain (e.g., yourcompany.atlassian.net) |
limit | number | No | Maximum number of spaces to return (default: 25) |
cloudId | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of retrieval |
spaces | array | List of spaces |
- Category:
tools
- Type:
confluence