Clone a template to the user’s team as a new custom processor.
import requests
url = "https://www.datalab.to/api/v1/processor_templates/{slug}/clone"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text){
"success": true,
"processor_id": "<string>"
}Was this page helpful?
import requests
url = "https://www.datalab.to/api/v1/processor_templates/{slug}/clone"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text){
"success": true,
"processor_id": "<string>"
}