POST
/
verify
/
devices
/
{deviceID}
/
challenges
/
{challengeID}
Respond to a push challenge (approve or decline)
curl --request POST \
  --url https://coreapi-dev.us.bcpapers.ca/verify/devices/{deviceID}/challenges/{challengeID} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "approved": true,
  "signature": "<string>"
}
'
This response has no body data.

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

challengeID
string
required

Challenge UUID

Body

application/json

Response

approved
boolean
signature
string

Response