import requests
url = "http://api/apollo/index-pipelines/{id}"
response = requests.get(url)
print(response.text){
"id": "<string>",
"stages": [
{
"type": "<string>",
"id": "<string>",
"skip": false,
"label": "<string>",
"condition": "<string>"
}
],
"properties": {}
}import requests
url = "http://api/apollo/index-pipelines/{id}"
response = requests.get(url)
print(response.text){
"id": "<string>",
"stages": [
{
"type": "<string>",
"id": "<string>",
"skip": false,
"label": "<string>",
"condition": "<string>"
}
],
"properties": {}
}Was this page helpful?