Clone a template to the user’s team as a new custom processor.
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, "processor_id": "<string>" }
Documentation IndexFetch the complete documentation index at: https://documentation.datalab.to/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://documentation.datalab.to/llms.txt
Use this file to discover all available pages before exploring further.
Successful Response
Response for cloning a template.
The new processor ID for the cloned processor
Was this page helpful?