Delete User Voice Enroll
This method is used to delete an user voice enrollment on the DB
Delete User Voice Enroll
DELETE Https://api.biometrid.com/api/1.0/users/:userId/voice/delete
Delete User voice enroll.
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
Request Body
Name
Type
Description
language
string
Code from the available languages for the client. (ex: 'en' or 'pt'). If none present, sets the default.
{
"status": true,
"data": {
"message": "USER_VOICE_CREDENTIALS_DELETED"
}
}//User voice not enroled on this provider.
{
"status": false,
"data": {
"message": "ENROLL_USER_VOICE_FIRST"
}
}
// Missing Headers
{
"status": false,
"data": {
"message": "AUTHENTICATION_HEADERS_MISSING"
}
}{
"status": false,
"data": {
"message": "INVALID_AUTHENTICATION_HEADERS"
}
}{
"status": false,
"data": {
"message": "REQUEST_LIMIT_REACHED"
}
}// No active engine configuration for this provider.
{
"status": false,
"data": {
"message": "NO_VOICE_ENGINE_CONFIGURATION_AVAILABLE"
}
}
// User's id not exists in biometrid environment.
{
"status": false,
"data": {
"message": "USERID_NOT_EXISTS"
}
}
//Client not found by given key.
{
"status": false,
"data": {
"message": "CLIENT_NOT_FOUND/CHECK_AUTHENTICATION_HEADERS"
}
}Last updated
Was this helpful?