List all custom processors for a team. Returns processors ordered by creation date (newest first).
import requests
url = "https://www.datalab.to/api/v1/custom_processors"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"pipelines": [
{
"processor_id": "<string>",
"status": "<string>",
"created_at": "<string>",
"name": "<string>",
"request_description": "<string>",
"success": true,
"completed_at": "<string>",
"error_message": "<string>",
"active_version": 0,
"max_version": 0,
"iteration_in_progress": false,
"is_template": false,
"eval_rubric_id": 123,
"pipeline_id": "<string>"
}
]
}Was this page helpful?
import requests
url = "https://www.datalab.to/api/v1/custom_processors"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"pipelines": [
{
"processor_id": "<string>",
"status": "<string>",
"created_at": "<string>",
"name": "<string>",
"request_description": "<string>",
"success": true,
"completed_at": "<string>",
"error_message": "<string>",
"active_version": 0,
"max_version": 0,
"iteration_in_progress": false,
"is_template": false,
"eval_rubric_id": 123,
"pipeline_id": "<string>"
}
]
}