Skip to content

Spaces

Manage Confluence spaces.

  • Authenticated profile (atlcli auth login)
  • Permission: View for listing, Space Admin for creating spaces
Terminal window
atlcli wiki space list

Options:

FlagDescription
--limitMaximum results

Output:

KEY NAME TYPE
TEAM Team Documentation global
DEV Development global
~alice Alice's Space personal
Terminal window
atlcli wiki space get --key TEAM

Output:

{
"schemaVersion": "1",
"space": {
"id": 12345,
"key": "TEAM",
"name": "Team Documentation",
"type": "global",
"url": "https://company.atlassian.net/wiki/spaces/TEAM"
}
}
Terminal window
atlcli wiki space create --key NEWSPACE --name "New Documentation Space"

Options:

FlagDescription
--keySpace key (required, uppercase)
--nameSpace name (required)
--descriptionSpace description
Terminal window
atlcli wiki space create --key DOCS --name "Public Documentation" \
--description "Customer-facing documentation"

All commands support --json:

Terminal window
atlcli wiki space list --json
{
"schemaVersion": "1",
"spaces": [
{
"id": 12345,
"key": "TEAM",
"name": "Team Documentation",
"type": "global"
},
{
"id": 12346,
"key": "DEV",
"name": "Development",
"type": "global"
}
]
}
  • Sync - Initialize sync with --space flag
  • Pages - List and manage pages in a space
  • Search - Search within spaces
Jira and Confluence are trademarks of Atlassian Corporation Plc. atlcli is not affiliated with, endorsed by, or sponsored by Atlassian.