Hello! I have a zeppelin note that has many paragraphs. I have one paragraph that should receive/set up some parameters that will be further used by the other paragraphs.
I would like to submit a job via zeppelin REST API that will with these parameters set up in the body. I know that in zeppelin there is a REST API service that runs a paragraph with parameters in the body, example of such a call is curl -H "Content-Type: application/json" -X POST -d '{ "params": { "filename": "/myfolder/my_file.txt","min":0.89,"max":25} }' http://zep_host:zep_port/api/notebook/job/noteid/pargarph_id I would like to have something similar for running the job (all paragraphs) with the parameters, without having to separated calls for doing this (one post call to the paragraph that sets up the parameters, and one call to submit the entire job). I look forward for your solutions. Thanks. Florin