Clone a template to the user’s team as a new custom pipeline.
Python
import requests url = "https://www.datalab.to/api/v1/pipeline_templates/{slug}/clone" headers = {"X-API-Key": "<api-key>"} response = requests.post(url, headers=headers) print(response.text)
{ "success": true, "pipeline_id": "<string>" }
Successful Response
Response for cloning a template.
The new pipeline ID for the cloned pipeline
Was this page helpful?