Connect your Confluence workspace to search, read, and create pages directly from your workflows.
Authentication: API Key. Provide your Confluence base URL, email, and API token when connecting.
Triggers
New Page
Fires when a new page is created in a monitored space.
| Output | Type | Description |
|---|---|---|
pageId | string | Page ID |
title | string | Page title |
url | string | Page URL |
content | string | Page body content (HTML or storage format) |
spaceId | string | Space ID |
status | string | Page status (current or draft) |
Updated Page
Fires when an existing page is modified.
Same outputs as New Page, plus:
| Output | Type | Description |
|---|---|---|
version | number | New page version number |
Actions
Search Pages
Searches for pages using Confluence Query Language (CQL).
| Input | Required | Description |
|---|---|---|
| Query | Yes | CQL query (e.g. text ~ "quarterly report" AND space.key = "TEAM") |
| Output | Type | Description |
|---|---|---|
pages | array | Matching pages with id, title, url, space |
total | number | Total matching results |
Get Page
Retrieves a specific page by ID.
| Input | Required | Description |
|---|---|---|
| Page ID | Yes | Confluence page ID |
| Output | Type | Description |
|---|---|---|
page | object | Full page object with title, body, version, space |
Create Page
Creates a new Confluence page.
| Input | Required | Description |
|---|---|---|
| Space ID | Yes | Target Confluence space |
| Title | Yes | Page title |
| Body Content | No | Page body in Confluence Storage Format or HTML |
| Parent Page ID | No | ID of the parent page |
| Status | No | current (published, default) or draft |
| Output | Type | Description |
|---|---|---|
pageId | string | ID of the created page |
url | string | URL of the new page |
Update Page
Updates an existing page's title or content.
| Input | Required | Description |
|---|---|---|
| Page ID | Yes | Page to update |
| Title | No | New title |
| Body Content | No | New body content |
Get Spaces
Returns available Confluence spaces.
| Output | Type | Description |
|---|---|---|
spaces | array | Space objects with id, key, name |
Get Folders
Returns child pages/folders of a given page.
| Input | Required | Description |
|---|---|---|
| Page ID | Yes | Parent page ID |
| Output | Type | Description |
|---|---|---|
children | array | Child page objects |
Was this page helpful?