| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Audio | query | string | Yes | The audio stream containing the speech to be transcribed |
| RefId | query | string | No | Optional client-provided identifier for the request |
| Tag | query | string | No | Tag to identify the request |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Results | form | List<TextOutput> | No | List of generated text outputs |
| ResponseStatus | form | ResponseStatus | No | Detailed response status information |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Text | form | string | No | The generated text |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/SpeechToText HTTP/1.1
Host: test.servicestack.net
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
audio: String,
refId: String,
tag: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
results:
[
{
text: String
}
],
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}