Skip to main content
GET
/
zk
/
export
/
{path}
Get ZooKeeper data
import requests

url = "https://{FUSION HOST}/api/zk/export/{path}"

response = requests.get(url)

print(response.json())
{
  "path": "/lucid/query-pipelines",
  "children": [
    {
      "path": "/lucid/query-pipelines/default"
    }
  ]
}

Path Parameters

path
string
required

Path from ZooKeeper root node, such as 'lucid/query-pipelines'.

Query Parameters

recursive
boolean
default:true

Return children nodes.

excludePaths
string[]

List of paths to exclude.

includePaths
string[]

List of paths to include.

encodeValues
string
default:base64

Values encoding. Default is 'base64'.

ephemeral
boolean
default:false

Include ephemeral nodes. Default is false.

Response

200 - application/json

successful operation

request
object
response
object