diff --git a/docs/confluence.rst b/docs/confluence.rst index 3361604fa..6db484a3c 100644 --- a/docs/confluence.rst +++ b/docs/confluence.rst @@ -35,8 +35,9 @@ Get page info # Get all pages from Space # contet_type can be 'page' or 'blogpost'. Defaults to 'page' - # expand is a comma separated list of properties to expand on the content. - confluence.get_all_pages_from_space(space, start=0, limit=500, status=None, expand=None, content_type='page') + # expand is a comma separated list of properties to expand on the content. + # max limit is 100. For more you have to loop over start values. + confluence.get_all_pages_from_space(space, start=0, limit=100, status=None, expand=None, content_type='page') # Get list of pages from trash confluence.get_all_pages_from_space_trash(space, start=0, limit=500, status='trashed', content_type='page')