Get enroll Status

This method is used to get the enroll status for a certain user at any point. This enroll status indicates the state of each enroll of the client's chosen biometric engines.

Get enroll Status

GET https://api.biometrid.com/api/1.1/users/:userId/enroll/status

Get Enroll Status for User.

Path Parameters

Name
Type
Description

userId

string

BiometrID user ID

Headers

Name
Type
Description

x-biometrid-key

string

Application client key.

x-biometrid-secret

string

Application client secret.

{
    "status": true,
    "data": [
      {
        "engines_oid": "586d12dc3e7a0221d76a4be2",
        "type": "voice",
        "enrolled": true
      },
      {
        "engines_oid": "586d12dc3e7a0221d76a4be3",
        "type": "face",
        "enrolled": false
      }
    ]
}

Last updated

Was this helpful?