Page Properties
The page properties commands list the custom properties (key-value metadata) attached to a Confluence page. Properties are set by apps, macros, and integrations and are not visible in the page body itself.
Aliases: props, prop
This is useful for:
- Inventory and audit of metadata across pages
- Migration planning — understanding what integrations are in use
- Governance — verifying required properties are present
Properties by ID
acp2md page properties by-id PAGE_ID [flags]Examples
# Table output (default)
acp2md page properties by-id 123456
# JSON output
acp2md page properties by-id 123456 --format json
# YAML output
acp2md page properties by-id 123456 --format yaml
# Save to file
acp2md page properties by-id 123456 --format json --output props.json
# Limit results
acp2md page properties by-id 123456 --limit 10
# Pipe page ID from stdin
echo "123456" | acp2md page properties by-idFlags
| Flag | Short | Default | Description |
|---|---|---|---|
--format | -f | table | Output format: table, json, yaml |
--limit | 25 | Maximum number of properties to return | |
--cursor | (none) | Pagination cursor for fetching the next page of results | |
--output | -o | (stdout) | Output file path |
Properties by title
acp2md page properties by-title "PAGE TITLE" [flags]Examples
# List properties by page title
acp2md page properties by-title "API Reference"
# Sort by most recently modified page
acp2md page properties by-title "Release Notes" --sort -modified-date
# JSON output
acp2md page properties by-title "Project Overview" --format json --output props.json
# Pipe title from stdin
echo "Team Guidelines" | acp2md page properties by-titleAdditional flag
| Flag | Short | Default | Description |
|---|---|---|---|
--sort | -S | (none) | Sort matching results: id, -id, created-date, -created-date, modified-date, -modified-date, title, -title |
All other flags from by-id are also available.
Properties by URL
acp2md page properties by-url URL [flags]Aliases: url, u
Extracts the page ID from a Confluence URL and lists properties. Supported URL formats:
https://domain.atlassian.net/wiki/spaces/KEY/pages/123456/Page+Titlehttps://domain.atlassian.net/wiki/spaces/KEY/pages/123456https://domain.atlassian.net/wiki/pages/viewpage.action?pageId=123456
Examples
# List properties from a Confluence URL
acp2md page properties by-url "https://mycompany.atlassian.net/wiki/spaces/ENG/pages/123456"
# JSON output
acp2md page properties by-url "https://mycompany.atlassian.net/wiki/spaces/ENG/pages/123456" --format json
# Save to file
acp2md page properties by-url "https://mycompany.atlassian.net/wiki/spaces/ENG/pages/123456" --output props.json
# Pipe URL from stdin
echo "https://mycompany.atlassian.net/wiki/spaces/ENG/pages/123456" | acp2md page properties by-urlFlags
All flags from by-id apply.
Properties are distinct from page labels. Use --include-labels on page convert or page get commands to include labels in the output.
Last updated on