GET
/
verify
/
devices
/
{deviceID}
/
challenges
Poll for pending push challenges (long-poll fallback)
curl --request GET \
  --url https://coreapi-dev.us.bcpapers.ca/verify/devices/{deviceID}/challenges \
  --header 'Authorization: <api-key>'
{
  "challenges": [
    {
      "challenge_type": "<string>",
      "expires_at": "<string>",
      "id": "<string>",
      "payload": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Paste the JWT token only (no "Bearer " prefix needed — the UI adds it automatically).

Path Parameters

deviceID
string
required

Device UUID

Response

200 - application/json

OK

challenges
object[]