Skip to content

Confluence

Confluence

Confluence is Atlassian’s collaboration and knowledge management platform, used by teams to create, organize, and share documentation, wikis, and project plans in a single space. With the Confluence integration in SquadOS, your agents can create and update pages, publish blog posts, search content with CQL, manage tasks, and monitor changes in real time — all programmatically.

This tool uses OAuth 2.0 (OAUTH2) to connect. S2S_OAUTH2 (server-to-server OAuth 2.0) and API_KEY are also supported.

You will need to authorize access to your Atlassian account through the Composio secure connection page. To set up custom OAuth credentials, see the Composio guide.

For OAuth 2.0 (default), no manual credential is needed — access is authorized via the OAuth flow on the Composio page.

For API Key, follow these steps:

  1. Go to id.atlassian.com/manage-profile/security/api-tokens and log in to your Atlassian account.
  2. Click Create API token.
  3. Give the token a descriptive name (e.g., “SquadOS”) and click Create.
  4. Copy the generated token — it will not be shown again.
  1. Go to Tools in the side menu (/admin/tools).
  2. Open the Available tab and search for Confluence.
  3. Click the card to open the details modal and hit Connect.
  4. You’re taken to the secure connection page hosted by Composio, where you authorize access to your Atlassian account (OAuth 2.0).
  5. Once done, you’re sent back to SquadOS with the account connected and the tool available to your agents. (Connection-flow details in Organization Tools.)

How do I set up custom OAuth credentials for Confluence?

Section titled “How do I set up custom OAuth credentials for Confluence?”

For a step-by-step guide on creating and configuring your own Confluence OAuth credentials with Composio, see How to create OAuth credentials for Confluence.

CONFLUENCE_ADD_CONTENT_LABEL

Tool to add labels to a piece of content. Use after obtaining the content ID to tag pages or blog posts with metadata labels.

NameTypeRequiredDescription
idstringYesIdentifier of the Confluence content (page or blog post) to label.
labelsarrayYesList 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. Passing plain strings or omitting prefix causes schema validation errors.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CQL_SEARCH

Searches 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"), title search (title ~ "meeting notes"), label filtering (label = "important"), space filtering (space = DEV), type filtering (type = page or type = blogpost), creator filtering (creator = currentUser()), date filtering (lastModified > now("-7d")), and combined queries (text ~ "api" AND space = DOCS AND type = page). This action uses the Confluence REST API v1 search endpoint which fully supports CQL.

NameTypeRequiredDescription
cqlstringYesConfluence Query Language (CQL) query for searching content. 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).
limitintegerNoMaximum number of results to return (max 250, but may be limited to 25–50 when using body expansions).
startintegerNoStarting index for pagination (0-based).
expandstringNoComma-separated list of properties to expand in the response. Common values: content.space, content.version, content.body.storage.
excerptstringNoThe type of excerpt to return. Default is highlight. Accepted values: highlight, indexed, none.
includeArchivedSpacesbooleanNoWhether to include results from archived spaces.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CREATE_BLOGPOST

Tool 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.

NameTypeRequiredDescription
bodyobjectYesContent 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.
titlestringYesThe title of the new blog post.
statusstringYesStatus of the blog post. Use current to publish immediately or draft to save as private draft.
spaceIdstringYesID of the space where the blog post will be created.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CREATE_BLOGPOST_PROPERTY

Tool to create a property on a specified blog post. Use when you need to add custom metadata to a blog post. Creates a new key-value property on a specified Confluence blog post.

NameTypeRequiredDescription
idstringYesIdentifier of the Confluence blog post to add the property to.
keystringYesUnique key for the blog post property.
valuestringYesJSON string representing the value of the blog post property.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CREATE_CONTENT_PROPERTY_FOR_WHITEBOARD

Tool to create a new content property on a whiteboard. Use when you need to attach custom metadata to a Confluence whiteboard.

NameTypeRequiredDescription
keystringYesKey/name of the property to create.
valuestringYesJSON string representing the value of the content property.
whiteboard_idstringYesID of the whiteboard to add the property to.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CREATE_FOOTER_COMMENT

Tool 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.

NameTypeRequiredDescription
bodyobjectYesThe body content of the comment with representation format and value.
pageIdstringNoID of the page to comment on. Provide one of: pageId, blogPostId, attachmentId, or customContentId.
blogPostIdstringNoID of the blog post to comment on. Provide one of: pageId, blogPostId, attachmentId, or customContentId.
attachmentIdstringNoID of the attachment to comment on. Provide one of: pageId, blogPostId, attachmentId, or customContentId.
customContentIdstringNoID of the custom content to comment on. Provide one of: pageId, blogPostId, attachmentId, or customContentId.
parentCommentIdstringNoID of the parent comment. Provide this to create a reply to an existing comment.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CREATE_INLINE_COMMENT

Creates an inline comment on a Confluence page or blog post, highlighting specific text. For top-level comments, you must specify which text to highlight using inlineCommentProperties. For replies to existing inline comments, only provide the parentCommentId.

NameTypeRequiredDescription
bodyobjectYesThe body content of the comment with representation format and value.
pageIdstringNoID of the page to create an inline comment on. Provide one of: pageId, blogPostId, or parentCommentId.
blogPostIdstringNoID of the blog post to create an inline comment on. Provide one of: pageId, blogPostId, or parentCommentId.
parentCommentIdstringNoID of the parent comment to reply to. Provide this to create a reply to an existing inline comment.
inlineCommentPropertiesobjectNoProperties that determine which text the inline comment is attached to. Required for top-level inline comments (not replies).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CREATE_PAGE

Tool to create a new Confluence page in a specified space. Use when you need to create new documentation or content.

NameTypeRequiredDescription
bodyobjectNoWrapper for page body content.
titlestringYesTitle of the new page. Title uniqueness is scoped per parent: duplicates are allowed under different parents but not under the same parent.
spaceIdstringYesID 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.
parentIdstringNoID of the parent page. If omitted, the Confluence API will automatically place the page under the space’s homepage. Must be a numeric page ID only.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CREATE_PAGE_PROPERTY

Tool to create a property on a Confluence page. Use when you need to add custom metadata or settings to a page.

NameTypeRequiredDescription
keystringYesKey/name of the property to create.
valuestringYesValue of the property as a JSON string. Can represent any JSON type (string, number, object, array).
page_idstringYesID of the page to create a property for.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CREATE_PRIVATE_SPACE

Tool to create a private Confluence space. Use when you need an isolated workspace viewable only by its creator.

NameTypeRequiredDescription
keystringYesA unique key for the private space; must be unique and at most 255 characters. Must be alphanumeric only (no hyphens, underscores, or spaces).
namestringYesThe name of the private space, visible only to its creator.
descriptionobjectNoContainer for the plain-text description.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CREATE_SPACE

Tool 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.

NameTypeRequiredDescription
keystringYesA unique key for the space. Must be alphanumeric characters only (letters and numbers), up to 255 characters. Underscores and hyphens are not allowed.
namestringYesHuman-readable name for the space.
typestringNoType of the space: global or personal.
metadatastringNoOptional metadata for the space as a JSON string.
descriptionobjectNoDescription object for a Confluence space.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CREATE_SPACE_PROPERTY

Tool to create a new property on a Confluence space. Use after confirming the space ID when adding custom metadata.

NameTypeRequiredDescription
keystringYesUnique key for the space property.
valuestringYesJSON string representing the value of the space property.
spaceIdstringYesID of the space to add the property to.
versionobjectNoOptional version metadata for the new property.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_CREATE_WHITEBOARD

Tool to create a new Confluence whiteboard. Use when you need to start a collaborative whiteboard session.

NameTypeRequiredDescription
titlestringNoTitle of the whiteboard.
spaceIdstringYesID of the space where the whiteboard will be created.
parentIdstringNoID of the parent content under which the whiteboard will be created.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_DELETE_BLOGPOST_PROPERTY

Tool to delete a blog post property. Use when you need to remove custom metadata from a specified blog post.

NameTypeRequiredDescription
idstringYesID of the Confluence blog post containing the property.
propertyIdstringYesThe ID of the blog post property to delete. Can be a numeric ID or a property key string.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_DELETE_CONTENT_PROPERTY_FOR_PAGE_BY_ID

Tool 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.

NameTypeRequiredDescription
pageIdstringYesID of the Confluence page from which to delete the property.
propertyIdstringYesThe ID of the content property to delete from the page. Can be a numeric ID or a property key string.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_DELETE_CONTENT_PROPERTY_FOR_WHITEBOARD_BY_ID

Tool to delete a content property from a whiteboard by property ID. Use when you need to remove custom metadata from a whiteboard.

NameTypeRequiredDescription
propertyIdstringYesThe ID of the property to delete from the whiteboard. Can be a numeric ID or a property key string.
whiteboardIdstringYesID of the whiteboard from which to delete the property.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_DELETE_PAGE

Tool 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.

NameTypeRequiredDescription
idstringYesID of the page to delete.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_DELETE_SPACE

Tool to delete a Confluence space by its key. Use when you need to permanently remove a space.

NameTypeRequiredDescription
space_keystringYesKey of the space to delete.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_DELETE_SPACE_PROPERTY

Tool to delete a space property. Use when you need to remove a property from a Confluence space after review.

NameTypeRequiredDescription
propertyIdstringYesThe ID of the space property to delete. Can be a numeric ID or a property key string.
spaceIdOrKeyintegerYesThe numeric Long ID of the space containing the property. Must be a numeric space ID, not a space key or UUID.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_DOWNLOAD_ATTACHMENT

Downloads 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 CONFLUENCE_GET_ATTACHMENTS to list attachments and get the attachment ID.

NameTypeRequiredDescription
pageIdstringYesID of the Confluence page that contains the attachment.
attachmentIdstringYesID of the attachment to download (e.g., att65825).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_ATTACHMENT_LABELS

Tool to list labels on an attachment. Use after confirming the attachment ID to fetch its labels.

NameTypeRequiredDescription
idstringYesIdentifier of the Confluence attachment to retrieve labels for.
sortstringNoSort the result by a particular field.
limitintegerNoMaximum number of labels to return per page (1–250).
cursorstringNoOpaque cursor for pagination. Returned in the Link response header for fetching the next page.
prefixstringNoFilter labels by their prefix. Values: my, team, global, system.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_ATTACHMENTS

Tool to retrieve attachments of a Confluence page. Use after confirming page ID to list its attachments (supports pagination).

NameTypeRequiredDescription
limitintegerNoMaximum number of attachments to return per page. Confluence caps at 200.
startintegerNoZero-based index of the first item to return (pagination offset).
pageIdstringYesID of the Confluence page whose attachments will be retrieved.
mediaTypestringNoFilter attachments by MIME type (e.g., image/png, application/pdf).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_AUDIT_LOGS

Tool to retrieve Confluence audit records. Use when you need to fetch and filter audit logs for compliance or troubleshooting.

NameTypeRequiredDescription
limitintegerNoMaximum number of audit records to return per page.
startintegerNoZero-based index of the first audit record to return (pagination offset).
endDateintegerNoEnd of the audit record timestamp range (epoch time in milliseconds).
startDateintegerNoStart of the audit record timestamp range (epoch time in milliseconds).
searchStringstringNoFree-text search to filter audit records by summary or category.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_BLOGPOST_BY_ID

Tool to retrieve a specific Confluence blog post by its ID. Use when you have a blog post ID and need detailed metadata and content.

NameTypeRequiredDescription
idstringYesUnique identifier of the Confluence blog post to retrieve.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_BLOGPOST_LABELS

Tool to retrieve labels of a specific Confluence blog post by ID. Use after obtaining the blog post ID to list its labels.

NameTypeRequiredDescription
idstringYesIdentifier of the Confluence blog post to retrieve labels for.
limitintegerNoMaximum number of labels to return per page.
startintegerNoZero-based index of the first label to return (pagination offset).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_BLOGPOST_LIKE_COUNT

Tool to get like count for a Confluence blog post. Use after confirming the blog post ID to retrieve total likes.

NameTypeRequiredDescription
idstringYesIdentifier of the Confluence blog post to retrieve like count for.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_BLOGPOST_OPERATIONS

Tool to retrieve permitted operations for a Confluence blog post. Use after confirming the blog post ID to see allowed actions.

NameTypeRequiredDescription
idstringYesIdentifier of the Confluence blog post to query operations for.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_BLOG_POSTS

Tool to retrieve a list of blog posts. Use when you need a paginated list of Confluence blog posts.

NameTypeRequiredDescription
limitintegerNoMaximum number of items to return per page.
cursorstringNoOpaque pagination cursor for fetching the next page of results.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_BLOG_POSTS_FOR_LABEL

Tool to list all blog posts under a specific label. Use when you have a label ID and need to retrieve associated blog posts.

NameTypeRequiredDescription
idstringYesID of the label to retrieve blog posts for.
limitintegerNoMaximum number of items to return per page.
cursorstringNoOpaque pagination cursor for fetching the next page of results.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_BLOGPOST_VERSION_DETAILS

Tool 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.

NameTypeRequiredDescription
blogpostIdstringYesUnique identifier of the Confluence blog post.
versionNumberintegerYesVersion number of the blog post to retrieve.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_BLOGPOST_VERSIONS

Tool to retrieve all versions of a specific blog post. Use when you have a blogpostId and need to list version numbers.

NameTypeRequiredDescription
limitintegerNoMaximum number of version items to return per page.
cursorstringNoCursor for pagination. Use value from previous response to fetch next page.
blogpostIdstringYesThe unique identifier of the Confluence blog post.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_CHILD_PAGES

Tool 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.

NameTypeRequiredDescription
idstringYesID 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.
sortstringNoSort order options for child pages: id, -id, created-date, -created-date, modified-date, -modified-date, child-position, -child-position.
limitintegerNoMaximum number of items to return per page. Maximum cap is 100. Paginate until _links.next is absent to ensure all children are retrieved.
cursorstringNoCursor for pagination. Use the cursor from the previous response’s _links.next to get the next page of results.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_CONTENT_PROPERTIES_FOR_BLOG_POST

Tool to retrieve all content properties on a blog post. Use when you need to list metadata properties set on a specific Confluence blog post.

NameTypeRequiredDescription
limitintegerNoMaximum number of properties to return per page.
startintegerNoZero-based index of the first property to return (pagination offset).
blogpost_idstringYesIdentifier of the Confluence blog post to retrieve properties for.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_CONTENT_PROPERTIES_FOR_PAGE

Tool to retrieve all content properties on a page. Use when you need to list metadata properties set on a specific Confluence page.

NameTypeRequiredDescription
limitintegerNoMaximum number of properties to return per page (max 200).
cursorstringNoOpaque pagination cursor for fetching the next page of results.
page_idstringYesIdentifier of the Confluence page to retrieve properties for.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_CONTENT_RESTRICTIONS

Tool to retrieve restrictions on a Confluence content item. Use when you need to see who can view or edit a page or blog post.

NameTypeRequiredDescription
idstringYesID of the content to retrieve restrictions for.
expandarrayNoComma-separated properties to expand in the response, e.g., restrictables.operation, user.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_CURRENT_USER

Tool 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.

NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_INLINE_COMMENTS_FOR_BLOG_POST

Tool to retrieve inline comments for a Confluence blog post. Use when you need inline comment details by blog post ID.

NameTypeRequiredDescription
idstringYesUnique identifier of the blog post to retrieve inline comments for.
sortstringNoSort order for results. Use - prefix for descending order. Values: created-date, -created-date, modified-date, -modified-date.
limitintegerNoMaximum number of inline comments to return per page (default 25, max 250).
cursorstringNoCursor for pagination. Use the cursor from _links.next in the previous response.
body_formatstringNoThe content format type for the comment body. Valid values: storage, atlas_doc_format.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_LABELS

Tool 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.

NameTypeRequiredDescription
limitintegerNoMaximum number of labels to return per page.
startintegerNoZero-based index of the first label to return (pagination offset).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_LABELS_FOR_PAGE

Tool 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.

NameTypeRequiredDescription
idstringYesIdentifier of the Confluence page to retrieve labels for.
limitintegerNoMaximum number of labels to return per page.
startintegerNoZero-based index of the first label to return (pagination offset). Increment by limit value iteratively to paginate through all labels.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_LABELS_FOR_SPACE

Tool to list labels on a space. Use when you need to retrieve labels for a specific space.

NameTypeRequiredDescription
idstringYesID of the space to retrieve labels for (numeric space ID).
sortstringNoSort order for results. Use - prefix for descending order. Values: created-date, -created-date, id, -id, name, -name.
limitintegerNoMaximum number of labels to return per page (default 25, max 250).
cursorstringNoCursor for pagination. Use the cursor from the previous response to get the next page.
prefixstringNoFilter labels by prefix. Values: my, team, global, system.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_LABELS_FOR_SPACE_CONTENT

Tool 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.

NameTypeRequiredDescription
idstringYesThe ID of the space to list content labels for.
limitintegerNoMaximum number of labels to return per page.
startintegerNoZero-based index of the first label to return (pagination offset).
prefixstringNoFilter labels by this prefix (e.g., global, page-).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_PAGE_ANCESTORS

Tool to retrieve all ancestors for a given Confluence page by its ID. Use when you need the full page hierarchy.

NameTypeRequiredDescription
idstringYesID of the Confluence page to retrieve ancestors for.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_PAGE_BY_ID

Tool 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.

NameTypeRequiredDescription
idstringYesNumeric Long ID of the Confluence page to retrieve. Must be a numeric long value, not a UUID or string identifier.
draftbooleanNoWhether to return the draft version (default: false).
versionintegerNoSpecific page version to retrieve (default: latest).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_PAGE_FOOTER_COMMENTS

Tool to retrieve footer (non-inline) comments for a Confluence page. Use when you need to collect review feedback left as standard page comments.

NameTypeRequiredDescription
idstringYesUnique identifier of the page to retrieve footer comments for.
sortstringNoSort order for results. Use - prefix for descending order. Values: created-date, -created-date, modified-date, -modified-date.
limitintegerNoMaximum number of footer comments to return per page (default 50, max 250).
cursorstringNoCursor for pagination. Use the cursor from _links.next in the previous response.
statusarrayNoFilter comments by status. Can include multiple statuses.
body_formatstringNoThe content format type for the comment body. Valid values: storage, atlas_doc_format.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_PAGE_INLINE_COMMENTS

Tool to retrieve inline comments for a Confluence page. Use when you need inline comment details by page ID.

NameTypeRequiredDescription
idintegerYesNumeric ID of the page to retrieve inline comments for.
sortstringNoSort order for results. Use - prefix for descending order. Values: created-date, -created-date, modified-date, -modified-date.
limitintegerNoMaximum number of inline comments to return per page (default 25, max 250).
cursorstringNoCursor for pagination. Use the cursor from _links.next in the previous response.
statusarrayNoFilter comments by status. Pass an array of status values.
body_formatstringNoThe content format type for the comment body. Valid values: storage, atlas_doc_format.
resolution_statusarrayNoFilter comments by resolution status. Pass an array of resolution status values (e.g., open, resolved).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_PAGE_LIKE_COUNT

Tool to get like count for a Confluence page. Use after confirming the page ID to retrieve total likes.

NameTypeRequiredDescription
idstringYesIdentifier of the Confluence page to retrieve like count for.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_PAGES

Tool 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.

NameTypeRequiredDescription
sortstringNoSort order for pages. Values: id, -id, created-date, -created-date, modified-date, -modified-date, title, -title.
limitintegerNoMaximum number of pages to return per page. Confluence caps at 250.
titlestringNoFilter by page title (exact match).
cursorstringNoOpaque pagination cursor. Use the next link from a previous response to continue. Iterate until no next link is returned to avoid silently missing pages.
statusstringNoFilter by page status. Allowed values: current, archived, deleted, trashed.
subtypestringNoFilter by page subtype. Valid values: live, page.
space_idstringNoFilter by space ID(s). Provide a single ID or a list of IDs.
body_formatstringNoBody representation to include in results. Allowed values: storage or atlas_doc_format.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_PAGE_VERSIONS

Tool 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.

NameTypeRequiredDescription
idstringYesThe unique identifier of the Confluence page. String format; differs from the numeric long expected by CONFLUENCE_GET_PAGE_BY_ID.
limitintegerNoMaximum number of versions to return per page. Older versions are silently omitted if pagination is not followed.
startintegerNoZero-based index of the first version to return (pagination offset).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_SPACE_BY_ID

Tool 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.

NameTypeRequiredDescription
idstringYesThe 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.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_SPACE_CONTENTS

Tool 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. Atlassian Cloud enforces HTTP 429 rate limits; throttle to ~1–2 requests/second and honor Retry-After headers.

NameTypeRequiredDescription
typestringNoType of content to return: page, blogpost, attachment.
limitintegerNoMaximum number of items to return per page. Confluence caps at 200.
startintegerNoZero-based index of the first item to return (pagination offset).
statusstringNoStatus of the content to return: current, trashed, draft, historical.
spaceKeystringYesKey of the space to retrieve content from.
postingDaystringNoFor blogposts, filter by publish date (ISO date, yyyy-MM-dd).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_SPACE_PROPERTIES

Tool to get properties of a Confluence space. Use when you need to retrieve custom metadata or settings stored as space properties.

NameTypeRequiredDescription
idstringYesID of the space to get properties for.
keyarrayNoFilter by property key(s). If not provided, returns all properties.
limitintegerNoMaximum number of properties to return per page. Confluence caps at 200.
startintegerNoZero-based index of the first item to return (pagination offset).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_SPACES

Tool 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. Use spaceKey or numeric space ID (not display name) for stable identification in downstream calls. Combined filters apply as AND logic.

NameTypeRequiredDescription
typestringNoType of space: global or personal.
labelarrayNoFilter by labels; spaces must have at least one of these labels.
limitintegerNoMaximum number of spaces to return per page. Confluence caps at 200.
startintegerNoZero-based index of the first item to return (pagination offset).
expandarrayNoProperties to expand in response (e.g., description, icon, metadata).
statusstringNoStatus of space: current (active) or archived.
spaceKeyarrayNoFilter by space key(s); accepts one or more canonical space keys.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_TASKS

Tool 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”.

NameTypeRequiredDescription
limitintegerNoMaximum number of tasks to return per page. Confluence caps at 250.
cursorstringNoOpaque pagination cursor. Use the next link from a previous response to continue.
statusstringNoFilter tasks by status (e.g., complete, incomplete).
page_idstringNoFilter by page ID(s). Provide a single ID or a list of IDs.
task_idstringNoFilter by specific task ID(s). Provide a single ID or a list of IDs.
space_idstringNoFilter by space ID(s). Provide a single ID or a list of IDs.
created_bystringNoFilter by task creator(s). Provide Atlassian account ID(s).
assigned_tostringNoFilter by task assignee(s). Provide Atlassian account ID(s).
blogpost_idstringNoFilter by blog post ID(s). Provide a single ID or a list of IDs.
body_formatstringNoBody representation to include in task results. Allowed values: storage or atlas_doc_format.
completed_bystringNoFilter by who completed the task(s). Provide Atlassian account ID(s).
include_blank_tasksbooleanNoWhether to include tasks that have no content or are blank.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_GET_USER_ANONYMOUS

Tool to retrieve information about the anonymous user. Use when you need to obtain guest user details before unauthenticated interactions.

NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_SEARCH_CONTENT

Searches 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.

NameTypeRequiredDescription
limitintegerNoMaximum number of results to return.
querystringYesSearch query to find matching pages. The search looks for this text in page titles with intelligent matching: (1) exact phrase matches (highest priority), (2) all words present anywhere in title (medium priority), (3) partial word matches (lowest priority). Case-insensitive and supports multiple words.
startintegerNoStarting index for pagination.
expandstringNoComma-separated list of properties to expand in the response.
spaceKeystringNoLimit search to a specific space by space key. Inspect spaceId in returned results to confirm scope.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_SEARCH_USERS

Searches for users using user-specific queries from the Confluence Query Language (CQL).

NameTypeRequiredDescription
limitintegerNoMaximum number of users per result to return.
cursorstringNoUsed for pagination. The cursor for the next page of results.
accountIdstringNoFilter by user account ID.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_UPDATE_BLOGPOST

Tool 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.

NameTypeRequiredDescription
idstringYesID of the blog post to update.
bodyobjectYesNew content for the blog post body. Provide the body in storage format.
titlestringYesNew title for the blog post.
statusstringNoStatus of the blog post. Defaults to current if not provided. Values: current, draft.
spaceIdstringYesID of the space containing the blog post.
versionobjectYesVersion object containing the new version number and optional metadata.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_UPDATE_BLOGPOST_PROPERTY

Tool to update a property of a specified blog post. Use when you need to modify custom metadata on a blog post.

NameTypeRequiredDescription
idstringYesID of the Confluence blog post to update.
valuestringYesNew JSON string value for the specified property.
propertyIdstringYesThe ID of the blog post property to update. Can be a numeric ID or a property key string.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_UPDATE_CONTENT_PROPERTY_FOR_PAGE_BY_ID

Tool to update a content property on a Confluence page. Use when you need to modify an existing metadata property by its ID.

NameTypeRequiredDescription
valuestringYesNew JSON string value for the specified property.
pageIdstringYesID of the Confluence page to update the property on.
propertyIdstringYesID of the content property to update on the page. Can be a numeric ID or a property key string.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_UPDATE_CONTENT_PROPERTY_FOR_WHITEBOARD_BY_ID

Tool to update a content property on a whiteboard. Use when you need to modify metadata on a Confluence whiteboard.

NameTypeRequiredDescription
valuestringYesNew JSON string value for the specified content property.
propertyIdstringYesID of the content property to update on the whiteboard. Can be a numeric ID or a property key string.
whiteboardIdstringYesID of the Confluence whiteboard containing the property to update.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_UPDATE_PAGE

Tool to update an existing Confluence page, replacing the entire page content. Use when you need to modify existing documentation or content.

NameTypeRequiredDescription
idstringYesID of the page to update. Must be a string; convert from numeric IDs returned by CONFLUENCE_GET_PAGE_BY_ID before passing.
bodyobjectYesUpdated content body of the page. Requires value (the content in the specified format) and representation (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.
titlestringYesUpdated title of the page. IMPORTANT: Confluence enforces unique page titles within each space. Changing the title to one that already exists in the same space will fail.
spaceIdstringNoID of the space containing the page. Optional if the page’s space doesn’t need to be changed.
versionobjectYesVersion 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.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_UPDATE_SPACE_PROPERTY

Tool 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).

NameTypeRequiredDescription
valuestringYesNew JSON string value for the specified space property.
spaceIdintegerYesThe ID of the space the property belongs to.
propertyIdstringYesThe ID of the space property to update. Can be a numeric ID or a property key string.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

CONFLUENCE_UPDATE_TASK

Tool to update a Confluence task status. Use when you need to mark tasks as complete or incomplete in workflows or dashboards.

NameTypeRequiredDescription
idstringYesID of the task to update.
statusstringYesStatus of the task. Values: complete, incomplete.
body_formatstringNoOptional body format for the response. Values: storage, atlas_doc_format.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.