List all versions of a custom processor, ordered by version descending.
Python
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 } ] }
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 schema for listing processor versions.
List of processor versions
Show child attributes
Was this page helpful?