Skip to Content
Atlassian Confluenceacp2mdv1.0.0Page Properties

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-id

Flags

FlagShortDefaultDescription
--format-ftableOutput format: table, json, yaml
--limit25Maximum 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-title

Additional flag

FlagShortDefaultDescription
--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+Title
  • https://domain.atlassian.net/wiki/spaces/KEY/pages/123456
  • https://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-url

Flags

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