Skip to main content
GET
/
apps
/
{client_id}
/
production-tests
/
{challenge_id}
/
report
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/production-tests/550e8400-e29b-41d4-a716-446655440000/report"
{
  "challenge": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "title": "BankID SE Test",
    "providerIds": ["bankidse"],
    "maxStamps": 3,
    "status": "active",
    "createdAt": "2025-01-15T10:00:00.000Z"
  },
  "providerResults": [
    {
      "providerId": "bankidse",
      "completedCount": 2,
      "avgCompletionSeconds": 12.5
    }
  ]
}
Returns challenge info with per-provider completion count and average completion time.

Request

Authorization
string
required
Bearer <API_KEY> from Console > Developers > Workspace API Keys.

Path parameters

client_id
string
required
Client identifier of the app.
challenge_id
string
required
Challenge ID.

Response

challenge
object
Challenge information.
providerResults
object[]
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/production-tests/550e8400-e29b-41d4-a716-446655440000/report"
{
  "challenge": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "title": "BankID SE Test",
    "providerIds": ["bankidse"],
    "maxStamps": 3,
    "status": "active",
    "createdAt": "2025-01-15T10:00:00.000Z"
  },
  "providerResults": [
    {
      "providerId": "bankidse",
      "completedCount": 2,
      "avgCompletionSeconds": 12.5
    }
  ]
}