Limitations
- The action lists only direct child pages for the specified parent. To traverse deeper descendants, you need to call the action again for each child page.
Prerequisites
- Glean action must be enabled for your instance and the Confluence action pack must be available.
- A connected Confluence account must exist for the user with permission to view pages in the target space.
Supported parameters
| Parameter | Type | Description |
|---|---|---|
| Page ID | String | Required. Unique identifier used to target or filter a specific resource. |
| Page Limit | Integer | Maximum number of results to return per page. Defaults to 25. |
| Start | Integer | Index of the first item to return (pagination offset). |
Usage example
You want to review all documentation pages under a main product guide to ensure they are up to date. Instruction to an agent: “List all the child pages under the Product Guide Overview page in the Engineering space. For each child page, show me the title and last modified date so I can identify which ones need updating.” Resulting behavior:-
Calls the Get child pages action with:
-
Page IDset to the Product Guide Overview page ID. - Returns a list of all direct child pages with their titles, IDs, and metadata.
- The agent can then display this information or use it in follow-up actions like updating outdated pages.
-
limit and start parameters to paginate through results.
Troubleshooting
No child pages returned, or fewer pages than expected
No child pages returned, or fewer pages than expected
- Possible cause: The parent page may not have any child pages, the connected account may not have permission to view them, or the ID may refer to a non-page content type such as a blog post that does not support a hierarchy.
- Fix: Confirm that the ID you pass belongs to a page and that the connected account can see the same child pages directly in Confluence. If you expect more results, try broadening any filtering that happens earlier in your flow, for example, in a preceding Get pages call.
Authentication, permission errors, or stale connected account errors
Authentication, permission errors, or stale connected account errors
- Possible cause: The Confluence action pack may not be fully configured, the connected account is missing, inactive, expired, or lacks the required scopes to read pages in the target space.
- Fix: Ask an admin to verify that the Confluence action pack is enabled for your deployment. Have the user reconnect their Confluence account to refresh the token and ensure it has the right scopes.
FAQs
How is this different from Confluence Get pages?
How is this different from Confluence Get pages?
Get child pages lists direct children of a specific parent page ID, maintaining hierarchical relationships. Get pages retrieves a flat, paginated list of pages in a space with filters such as author, label, and status.