GET /v2/face
Returns the face enrollment status for the authenticated user.
Used in flow: Check whether backup first needs an enroll scan and whether device registration needs a match scan. Recovery requires an enrolled face and a fresh match scan.
Authentication: JWT (Access Token) with read:face
Request
Authorization: Bearer <access_token>
Response
200 OK - face enrolled
{
"face_registered": true,
"updated_at": "2025-01-15T10:30:00Z"
}
200 OK - no face enrolled
{
"face_registered": false
}