Skip to main content
POST
/
v2
/
autoevals
/
terminate
Terminate an evaluation job
curl --request POST \
  --url https://api.scale.com/v2/autoevals/terminate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jobId": "<string>"
}
'
{
  "status_code": 200,
  "message": "Evaluation job terminated successfully."
}

Documentation Index

Fetch the complete documentation index at: https://docs.genai.scale.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your API Key is the Bearer token. See the Authentication section to learn how to access your key.

Body

application/json
jobId
string

ID of the evaluation job to terminate.

Response

Evaluation job terminated successfully.

status_code
number
Example:

200

message
string
Example:

"Evaluation job terminated successfully."