Manage Databricks notebooks and jobs via REST API to create, run, export, and monitor notebooks as part of automated data pipelines.
databricks_action
: Performs Databricks operations, including notebook create, read, update, delete, run, list, import, export, and status checks through the REST API.Notebook Lifecycle
Execute & Monitor
Import & Export
Permissions & Sharing
Jobs and Clusters
databricks_action
Name | Definition | Format |
---|---|---|
action | Databricks operation to perform. Common values: create_notebook , run_notebook , get_notebook , delete_notebook , list_notebooks , export_notebook , import_notebook . | String (required) |
workspace_url | Databricks workspace base URL. Example: https://adb-1234567890123.4.azuredatabricks.net . | String (required) |
access_token | Personal access token used for API authentication. | String (required) |
notebook_path | Workspace path to the target notebook. Example: /Shared/etl/run_daily . | String |
notebook_content | Notebook source for create or update actions. | String |
cluster_id | Cluster identifier to run the notebook on. | String |
notebook_format | Import or export format. One of SOURCE , HTML , JUPYTER , DBC . | String |
language | Language for new notebooks. One of PYTHON , SCALA , SQL , R . | String |
parameters | Key value pairs passed to the run. | Object |
timeout_seconds | Maximum runtime before the execution is marked timed out. | Integer |
timeout_seconds
conservatively.workspace_url
and access_token
.create_notebook
, run_notebook
, or export_notebook
.notebook_path
, optional cluster_id
, parameters
, and timeout_seconds
as needed.file_manager_tools
, and link runs back to tasks or tickets.
/Repos/team/project/
to simplify automation and reviews.data_connector_tools
: Open connections and run SQL inside notebooks that the action executes.file_manager_tools
: Capture notebook exports or logs and attach them to missions or tasks.project_manager_tools
: Track notebook work as todos with linked runs and outcomes.git_action
: Version notebook source, diffs, and promotion artifacts.dbt_action
: Coordinate dbt transformations before or after a Databricks notebook run.workspace_url
including protocol and host.cluster_id
points to a running or auto-start cluster that your token can access.notebook_format
with your import or export destination.parameters
must match widgets or parameter parsing in the notebook.notebook_format
and related download details.