DevOps & CloudDocumentedScanned

openclaw-confluence-skill

Full Confluence Cloud REST API v2 skill (pages, spaces, folders, databases, whiteboards, comments, labels, tasks,.

Share:

Installation

npx clawhub@latest install openclaw-confluence-skill

View the full skill documentation and source below.

Documentation

Confluence Cloud REST API v2

Use this skill to call Confluence Cloud REST API v2 endpoints directly. Supports all v2 groups (pages, spaces, folders, whiteboards, databases, embeds, comments, labels, properties, tasks, etc.).

Quick Start

1) Configure credentials (one of):

  • Basic: email + API token

  • OAuth: access token


2) Call endpoints using scripts in scripts/.

Config

Set these env vars (preferred) or store in a local config file:

CONFLUENCE_BASE_URL=
CONFLUENCE_AUTH_METHOD=basic   # basic | oauth
CONFLUENCE_EMAIL=chrono3412@gmail.com
CONFLUENCE_API_TOKEN=YOUR_TOKEN
# or for OAuth
# CONFLUENCE_OAUTH_TOKEN=YOUR_OAUTH_ACCESS_TOKEN

# Optional admin key header (Premium/Enterprise only)
# CONFLUENCE_ADMIN_KEY=true

Base URL is always ## Core Helpers - scripts/client.js — HTTP client wrapper, auth header, pagination - scripts/* — endpoint groups (pages, spaces, folders, etc.) ## Example __CODE_BLOCK_1__ ## Migration from confluence-cli If ~/.confluence-cli/config.json exists, map: - domainCONFLUENCE_BASE_URL ()

  • emailCONFLUENCE_EMAIL

  • tokenCONFLUENCE_API_TOKEN


References

  • OpenAPI spec: refs/openapi-v2.v3.json
  • Endpoints list: refs/endpoints.md
  • Scopes: refs/scopes.md
  • Tests: refs/tests.md
  • Usage tips: refs/usage.md