Apache Zeppelin Configuration REST API
Overview
Apache Zeppelin provides several REST APIs for interaction and remote activation of zeppelin functionality.
All REST APIs are available starting with the following endpoint http://[zeppelin-server]:[zeppelin-port]/api
.
Note that Apache Zeppelin REST APIs receive or return JSON objects, it is recommended for you to install some JSON viewers such as JSONView.
If you work with Apache Zeppelin and find a need for an additional REST API, please file an issue or send us an email.
Configuration REST API list
List all key/value pair of configurations
Description | This GET method return all key/value pair of configurations on the server.Note: For security reason, some pairs would not be shown. |
URL | http://[zeppelin-server]:[zeppelin-port]/api/configurations/all |
Success code | 200 |
Fail code | 500 |
sample JSON response |
|
List all prefix matched key/value pair of configurations
Description | This GET method return all prefix matched key/value pair of configurations on the server.Note: For security reason, some pairs would not be shown. |
URL | http://[zeppelin-server]:[zeppelin-port]/api/configurations/prefix/[prefix] |
Success code | 200 |
Fail code | 500 |
sample JSON response |
|