GET /v2/face
Returns the face registration status for the authenticated user.
Used in flow: Check if face verification is required before device registration or keyshare backup
Authentication: JWT (Access Token)
Request
Authorization: Bearer <access_token>
Response
200 OK — face registered
{
"registered": true,
"registered_at": "2025-01-15T10:30:00Z"
}
200 OK — face not registered
{
"registered": false,
"registered_at": null
}