List all versions of a custom processor, ordered by version descending.
import requests
url = "https://www.datalab.to/api/v1/custom_processors/{processor_id}/versions"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"versions": [
{
"version": 123,
"request_description": "<string>",
"created_at": "<string>",
"runtime": 123,
"is_active": false
}
]
}Was this page helpful?
import requests
url = "https://www.datalab.to/api/v1/custom_processors/{processor_id}/versions"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"versions": [
{
"version": 123,
"request_description": "<string>",
"created_at": "<string>",
"runtime": 123,
"is_active": false
}
]
}