Bulk Delete Evaluations For A Given Agent
curl --request POST \
  --url http://{api_endpoint}/api/v1/v1/orchestrate/agent/{agent_id}/evaluations/bulk_delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}'
{
  "deleted_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string<uuid>
required

Body

application/json
ids
string<uuid>[]
required

Response

Successful Response

deleted_ids
string<uuid>[]
required