List all versions of a custom pipeline, ordered by version descending.
Python
import requests url = "https://www.datalab.to/api/v1/custom_pipelines/{pipeline_id}/versions" headers = {"X-API-Key": "<api-key>"} response = requests.get(url, headers=headers) print(response.text)
{ "versions": [ { "version": 123, "request_description": "<string>", "created_at": "<string>", "runtime": 123, "is_active": false } ] }
Successful Response
Response schema for listing pipeline versions.
List of pipeline versions
Show child attributes
Was this page helpful?