GET
/
test_framework
/
v1
/
results-external
/
{id}
curl --request GET \
  --url https://new-prod.vocera.ai/test_framework/v1/results-external/{id}/ \
  --header 'X-VOCERA-API-KEY: <api-key>'
{
  "id": 123,
  "name": "<string>",
  "agent": 123,
  "status": "running",
  "met_expected_outcome_count": "<string>",
  "total_expected_outcome_count": "<string>",
  "success_rate": 123,
  "run_as_text": true,
  "runs": "<string>",
  "is_cronjob": true,
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

X-VOCERA-API-KEY
string
header
required

API Key Authentication. It should be included in the header of each request.

Path Parameters

id
string
required

Response

200
application/json
id
integer
required
agent
integer
required
met_expected_outcome_count
string
required

Number of runs that fully met their expected outcomes with a score of 100

total_expected_outcome_count
string
required

Total number of runs that had expected outcomes defined

runs
string
required

Dictionary mapping run IDs to detailed run information including scenario, evaluation and transcript data

is_cronjob
boolean
required

Whether this result was created by a scheduled cronjob

name
string
Maximum length: 255
status
enum<string>
  • running - Running
  • completed - Completed
  • failed - Failed
  • pending - Pending
  • in_progress - In Progress
  • evaluating - Evaluating
  • in_queue - In Queue
  • timeout - Timeout
Available options:
running,
completed,
failed,
pending,
in_progress,
evaluating,
in_queue,
timeout
success_rate
number
run_as_text
boolean
created_at
string