Get Available Languages
This method is used to get what languages are available for the client in the voice recognition engine.
Get Available Languages
GET
Https://api.biometrid.com/api/1.0/users/:userId/voice/available-languages
Get available languages available for the voice recognition engine.
Path Parameters
Name
Type
Description
userID
string
BiometrID user ID
Headers
Name
Type
Description
Content-type
string
Request content type (This is not required to be set. Referenced only to show how we expect data to be sent). { "Content-Type": "multipart/form-data" }
x-biometrid-key
string
Application Client Key
x-biometrid-secret
string
Application Client Secret
//Get Available Languages
{
"status": true,
"data": {
"languages": [
"en",
"es"
]
}
}
Success 200
Field
Type
Description
status
Boolean
Response status.
data
Object
Response main data.
languages
Array
Array containing all language code available.
Last updated
Was this helpful?