Skip to main content
POST
/
v1
/
orchestrate
/
agent
/
{agent_id}
/
test_case
/
bulk_delete
Bulk Delete Test Cases For A Given Agent
curl --request POST \
  --url https://{api_endpoint}/api/v1/orchestrate/agent/{agent_id}/test_case/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