IntegrationsConfluenceActions
List Confluence pages
List Confluence page metadata in a space for discovery and watermark sync.
pages.list · Confluence · v1
Details
Scopes
read:page:confluenceoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
space_id | string | Yes | minLength 1; maxLength 64 |
cursor | string | No | minLength 1; maxLength 2048 |
page_size | integer | No | minimum 1; maximum 100 |
status | string | No | enum current | archived | trashed |
sort | string | No | enum id | -id | created-date | -created-date | modified-date | -modified-date |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
pages | array<object> | Yes | maxItems 100 |
pages[] | object | Yes | additionalProperties false |
pages[].id | string | Yes | minLength 1; maxLength 64 |
pages[].title | string | Yes | maxLength 512 |
pages[].status | string | Yes | enum current | archived | trashed |
pages[].space_id | string | Yes | minLength 1; maxLength 64 |
pages[].parent_id | string | No | minLength 1; maxLength 64 |
pages[].parent_type | string | No | minLength 1; maxLength 64 |
pages[].author_id | string | No | minLength 1; maxLength 64 |
pages[].created_at | string | No | maxLength 64 |
pages[].updated_at | string | No | maxLength 64 |
pages[].revision | string | No | maxLength 64 |
pages[].url | string | No | maxLength 2048 |
next_cursor | string | No | minLength 1; maxLength 2048 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"space_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"status": {
"type": "string",
"enum": [
"current",
"archived",
"trashed"
]
},
"sort": {
"type": "string",
"enum": [
"id",
"-id",
"created-date",
"-created-date",
"modified-date",
"-modified-date"
]
}
},
"required": [
"space_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"pages": {
"type": "array",
"items": {
"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
}
},
"required": [
"id",
"title",
"status",
"space_id"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
},
"required": [
"pages"
]
}