Skip to main content
PUT
/
api
/
v1
/
custom_processors
/
{processor_id}
/
eval_definition
Update Pipeline Eval Definition
import requests

url = "https://www.datalab.to/api/v1/custom_processors/{processor_id}/eval_definition"

payload = {}
headers = {
    "X-API-Key": "<api-key>",
    "Content-Type": "application/json"
}

response = requests.put(url, json=payload, headers=headers)

print(response.text)
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Path Parameters

processor_id
string
required

Cookies

wos-session
string
datalab_active_team
string

Body

application/json

The body is of type Eval Definition · object.

Response

Successful Response