@Ing. Peter Stanik - Thanks for the question and using MS Q&A platform.
Yes, you can use the Jobs REST API to run Azure Databricks Notebook via REST API.
You can execute notebook:
- Either by creating a new job (you need
notebook_task
) and then triggering the new job run - Creating a single run (also called RunSubmit) - also
notebook_task
In either case, you will get a run ID, and then you need to wait until job is finished (checking the state
via get run API until it's get life_cycle_state
equal to TERMINATED
), and then retrieve the output of the run.
Hope this helps. Do let us know if you any further queries.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.