get_notebook_content
Retrieve notebook content and definition from Microsoft Fabric workspaces. Access cells, metadata, and configuration in Jupyter notebook format for analysis or integration.
Instructions
Get the content and definition of a notebook.
Retrieves the full notebook definition including all cells, metadata, and configuration from a Fabric workspace. The content is returned as a dictionary matching the Jupyter notebook format.
Parameters: workspace_name: The display name of the workspace. notebook_display_name: The name of the notebook.
Returns: Dictionary with status, workspace_name, notebook_name, and notebook definition. The definition contains the full notebook structure including cells, metadata, etc.
Example: ```python result = get_notebook_content( workspace_name="My Workspace", notebook_display_name="analysis/customer_analysis" )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| workspace_name | Yes | ||
| notebook_display_name | Yes |