🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/audioplayback/uploadAudioText \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"audioPlaintext": "Welcome to our facility",
"audioSSML": "<speak>Welcome to our facility</speak>",
"description": "A welcome message for visitors",
"displayName": "Welcome Message",
"voiceId": "en-US-Neural2-F"
}
'{
"encodingFailure": false,
"error": true,
"errorMsg": "<string>",
"invalidSSML": false,
"synthesisFailure": false,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"warningMsg": "<string>"
}Upload text to synthesize audio
curl --request POST \
--url https://api2.rhombussystems.com/api/audioplayback/uploadAudioText \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"audioPlaintext": "Welcome to our facility",
"audioSSML": "<speak>Welcome to our facility</speak>",
"description": "A welcome message for visitors",
"displayName": "Welcome Message",
"voiceId": "en-US-Neural2-F"
}
'{
"encodingFailure": false,
"error": true,
"errorMsg": "<string>",
"invalidSSML": false,
"synthesisFailure": false,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request to upload text for audio synthesis.
Plain text to synthesize into audio
"Welcome to our facility"
SSML markup for audio synthesis
"<speak>Welcome to our facility</speak>"
Description of the audio clip
"A welcome message for visitors"
Display name for the audio clip
"Welcome Message"
Voice ID for text-to-speech synthesis
"en-US-Neural2-F"
OK
Response from uploading text for audio synthesis.
Indicates if audio encoding failed
false
Indicates if SSML markup is invalid
false
Indicates if text-to-speech synthesis failed
false
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Was this page helpful?