List all custom pipelines for a team. Returns pipelines ordered by creation date (newest first).
Python
import requests url = "https://www.datalab.to/api/v1/custom_pipelines" headers = {"X-API-Key": "<api-key>"} response = requests.get(url, headers=headers) print(response.text)
{ "pipelines": [ { "pipeline_id": "<string>", "request_description": "<string>", "status": "<string>", "created_at": "<string>", "name": "<string>", "success": true, "completed_at": "<string>", "error_message": "<string>" } ] }
Successful Response
Response schema for listing all custom pipelines.
List of custom pipelines
Show child attributes
Was this page helpful?