GET
|
HTTP Method |
GET |
|
URI |
https://<serverip/hostname/FQDN>/speechconfig/rest/ template/{service_type}/{provider_name} |
|
Valid Values |
TTS, ASR, NLP |
|
Content Type |
Application/JSON |
|
HTTP Success Code |
200 OK |
|
HTTP Failure Code |
404, 500 |
Sample Response
{
tts: {
google: {
general: [
{
id: 'licenseKey',
label: 'License Key',
type: 'text'
},
{
id: 'default-language',
label: 'Default Language',
type: 'editableDropDown',
dropDown: [
'en-US', 'fr-FR', 'ja-JP'
]
},
{
id: 'default-gender',
label: 'Default Gender',
type: 'editableDropDown',
dropDown: [
'Male', 'Female'
]
}
]
}
}
}