IntegrationsConfluenceActions
Search Confluence content
Search Confluence page metadata with bounded text and space filters. Runtime builds escaped CQL; contracts never expose raw CQL. Catalog change_action_ids lists this action for incremental modified-page discovery only — complete watermark reconciliation also requires pages.list(status=trashed) plus periodic ACL/full reconciliation.
content.search · Confluence · v1
Details
Scopes
read:content-details:confluenceoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
text | string | No | maxLength 500 |
space_key | string | No | minLength 1; maxLength 255 |
include_archived | boolean | No | — |
cursor | string | No | minLength 1; maxLength 2048 |
page_size | integer | No | minimum 1; maximum 100 |
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": {
"text": {
"type": "string",
"maxLength": 500
},
"space_key": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"include_archived": {
"type": "boolean"
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
}
}
}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"
]
}