

get_page_by_id ( page_id, expand = None, status = None, version = None ) # The list of labels on a piece of Content confluence. # Default value: history,space,version # We can also specify some extensions such as extensions.inlineProperties # (for getting inline comment-specific properties) or extensions.resolution # for the resolution status of each comment in the results confluence. Default value: # version: (int) # expand: OPTIONAL: A comma separated list of properties to expand on the content. get_page_by_title ( space, title, start = None, limit = None ) # Get page by ID # Example request URI(s): # page_id: Content ID # status: (str) list of Content statuses to filter results on. get_page_space ( page_id ) # Returns the list of labels on a piece of Content confluence. get_page_id ( space, title ) # Provide space key from content id confluence. get_page_child_by_type ( page_id, type = 'page', start = None, limit = None, expand = None ) # Provide content id from search result by title and space confluence. page_exists ( space, title, type = None ) # Provide content by type (page, blog, comment) confluence. # Check page exists # type of the page, 'page' or 'blogpost'.
