Skip to content

Validation Status

GET
/api/agents/validate/{run_id}
curl --request GET \
--url https://example.com/api/agents/validate/example \
--header 'Authorization: Bearer <token>'

Poll validation status by run_id.

run_id
required
Run Id
string

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}