ActionConfluenceUpdated September 2026

How do I create a Confluence page?

Short answer: You can create confluence page in Confluence by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Confluence Create Confluence Page action to a workflow, map its 4 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.

Create Confluence Page in Confluence — start free
Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Space Key
spaceKey
stringRequiredThe short key of the Confluence space
Page Title
title
stringRequiredPage Title. Example: Meeting Notes — Jan 15
Page Body
body
stringRequiredHTML content of the page. Use Confluence storage format for rich content.
Parent Page ID
parentId
stringOptionalCreate as a child of this page. Leave empty for a top-level page.
Sample request
{
"spaceKey": "e.g. ENG",
"title": "e.g. Meeting Notes — Jan 15",
"body": "<p>Notes from today's meeting...</p>",
"parentId": "e.g. 123456"
}
Returns
{
"id": "789012",
"type": "page",
"title": "Meeting Notes",
"_links": {
"webui": "/spaces/ENG/pages/789012/Meeting+Notes"
}
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for Create Confluence Page.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about Create Confluence Page.

What does the Create Confluence Page action do in Confluence?
Creates a page in a specified space with body in Confluence storage format (XHTML with Atlassian macro elements) or wiki representation. Optional parent page ID for hierarchical placement. Useful for "auto-generate meeting notes" or "publish weekly engineering report" workflows.
What inputs does Create Confluence Page require?
Required: Space Key, Page Title, Page Body. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Confluence returns an error?
The run history shows the failed step with its input and the error message Confluence returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does Create Confluence Page support batch operations?
Run Create Confluence Page inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within Confluence's rate limits.
More actions

Other Confluence actions.

Create Confluence Page in Confluence — start free