GET
/
test_framework
/
v1
/
runs-external
/
bulk
/
curl --request GET \
  --url https://new-prod.vocera.ai/test_framework/v1/runs-external/bulk/ \
  --header 'X-VOCERA-API-KEY: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": 123,
      "provider_call_id": "<string>",
      "scenario": 123,
      "scenario_name": "<string>",
      "expected_outcome_prompt": "<string>",
      "expected_outcome": "<any>",
      "success": true,
      "evaluation": "<any>",
      "transcript": "<string>",
      "transcript_object": "<any>",
      "duration": "<string>",
      "voice_recording_url": "<string>",
      "email_id": "jsmith@example.com",
      "status": "running",
      "metadata": "<any>",
      "feedback": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "outbound_number": "<string>",
      "critical_categories": "<string>",
      "error_message": "<string>"
    }
  ]
}

Authorizations

X-VOCERA-API-KEY
string
header
required

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

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

run_ids
string
required

Comma-separated list of run IDs

Response

200 - application/json

The response is of type object.