Delete User
This method is used to delete an user on the DB
Delete Biometrid User
DELETE Https://api.biometrid.com/api/1.1/users/:userId
Delete an Biometrid user.
Path Parameters
Name
Type
Description
userId
string
BiometrID User ID
Headers
Name
Type
Description
x-biometrid-key
string
Application client key
x-biometrid-key
string
Application client secret
{
"status": true,
"data": {
"message": "USER_REMOVED_WITH_SUCCESS"
}
}h{
"status": false,
"data": {
"message": "AUTHENTICATION_HEADERS_MISSING"
}
}
{
"status": false,
"data": {
"message": "REQUEST_LIMIT_REACHED"
}
}// 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?