Archive a custom processor (soft-delete). Available to any team member with pipeline access.
import requests
url = "https://www.datalab.to/api/v1/custom_pipelines/{processor_id}/archive"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text){
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?
import requests
url = "https://www.datalab.to/api/v1/custom_pipelines/{processor_id}/archive"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text){
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}