IntegrationsConfluenceActions
Get Confluence page content
Read a Confluence page as Markdown for current/archived lifecycle, or tombstone metadata for trashed pages. Never returns raw ADF or evaluates macros.
pages.get · Confluence · v1
Details
Scopes
read:page:confluenceoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page_id | string | Yes | minLength 1; maxLength 64 |
status | string | No | enum current | archived | trashed |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false; oneOf branch 1: required status, content_format, content; status=current|archived / branch 2: required status; status=trashed |
id | string | Yes | minLength 1; maxLength 64 |
title | string | Yes | maxLength 512 |
status | string | Yes | enum current | archived | trashed |
space_id | string | Yes | minLength 1; maxLength 64 |
parent_id | string | No | minLength 1; maxLength 64 |
parent_type | string | No | minLength 1; maxLength 64 |
author_id | string | No | minLength 1; maxLength 64 |
created_at | string | No | maxLength 64 |
updated_at | string | No | maxLength 64 |
revision | string | No | maxLength 64 |
url | string | No | maxLength 2048 |
content_format | string | No | enum markdown |
content | string | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"page_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"status": {
"type": "string",
"enum": [
"current",
"archived",
"trashed"
]
}
},
"required": [
"page_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"title": {
"type": "string",
"maxLength": 512
},
"status": {
"type": "string",
"enum": [
"current",
"archived",
"trashed"
]
},
"space_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"parent_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"parent_type": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"author_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"created_at": {
"type": "string",
"maxLength": 64
},
"updated_at": {
"type": "string",
"maxLength": 64
},
"revision": {
"type": "string",
"maxLength": 64
},
"url": {
"type": "string",
"maxLength": 2048
},
"content_format": {
"type": "string",
"enum": [
"markdown"
]
},
"content": {
"type": "string"
}
},
"required": [
"id",
"title",
"status",
"space_id"
],
"oneOf": [
{
"required": [
"status",
"content_format",
"content"
],
"properties": {
"status": {
"enum": [
"current",
"archived"
]
}
}
},
{
"required": [
"status"
],
"properties": {
"status": {
"enum": [
"trashed"
]
}
}
}
]
}