Restore an archived custom processor. Admin-only.
Python
import requests url = "https://www.datalab.to/api/v1/custom_processors/{processor_id}/restore" payload = { "team_id": "123" } headers = { "X-API-Key": "<api-key>", "Content-Type": "application/x-www-form-urlencoded" } response = requests.post(url, data=payload, headers=headers) print(response.text)
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>" } ] }
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.
Team ID that owns the processor
Successful Response
Was this page helpful?