GET
/
test_framework
/
v1
/
results-external
curl --request GET \
  --url https://new-prod.vocera.ai/test_framework/v1/results-external/ \
  --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,
      "name": "<string>",
      "agent": 123,
      "status": "running",
      "success_rate": 123,
      "run_as_text": true,
      "runs": "<string>",
      "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.

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

Response

200 - application/json
count
integer
required
Example:

123

results
object[]
required
next
string | null
Example:

"http://api.example.org/accounts/?page=4"

previous
string | null
Example:

"http://api.example.org/accounts/?page=2"