Skip to main content
GET
/
apps
/
{client_id}
/
production-tests
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/production-tests"
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "hostClientId": "abc123",
    "hostName": "My App",
    "title": "BankID SE Production Test",
    "description": "Testing BankID SE integration",
    "providerIds": ["bankidse"],
    "targetPlatform": null,
    "maxStamps": 3,
    "currentStampCount": 1,
    "status": "active",
    "allowDuplicateParticipation": false,
    "expiresAt": "2025-02-15T23:59:59.000Z",
    "createdAt": "2025-01-15T10:00:00.000Z",
    "updatedAt": "2025-01-15T10:00:00.000Z"
  }
]
Returns all production test challenges for the specified app.

Request

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

Path parameters

client_id
string
required
Client identifier of the app.

Response

Returns an array of challenge objects.
id
string
Challenge ID.
title
string
Challenge title.
description
string
Challenge description.
providerIds
string[]
Provider IDs included in the test.
status
string
Current status: active, expired, or completed.
currentStampCount
number
Current number of completed stamps.
maxStamps
number
Maximum number of stamps.
expiresAt
string
ISO 8601 expiration timestamp.
createdAt
string
ISO 8601 creation timestamp.
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/production-tests"
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "hostClientId": "abc123",
    "hostName": "My App",
    "title": "BankID SE Production Test",
    "description": "Testing BankID SE integration",
    "providerIds": ["bankidse"],
    "targetPlatform": null,
    "maxStamps": 3,
    "currentStampCount": 1,
    "status": "active",
    "allowDuplicateParticipation": false,
    "expiresAt": "2025-02-15T23:59:59.000Z",
    "createdAt": "2025-01-15T10:00:00.000Z",
    "updatedAt": "2025-01-15T10:00:00.000Z"
  }
]