POST api/SpeechToText/SaveScribeInstantSetting
Request Information
URI Parameters
None.
Body Parameters
ScribeInstantSettingRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ProviderId | integer |
None. |
|
| LanguageId | integer |
None. |
|
| LanguageAccentId | integer |
None. |
|
| GptModelId | integer |
None. |
|
| VisitTypeId | integer |
None. |
|
| EnableTranscript | boolean |
None. |
|
| ReportSections | Collection of ScribeInstantReportSectionsDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"providerId": 1,
"languageId": 1,
"languageAccentId": 1,
"gptModelId": 1,
"visitTypeId": 1,
"enableTranscript": true,
"reportSections": [
{
"llmReportId": 1,
"sectionOrder": 2,
"isActive": true
},
{
"llmReportId": 1,
"sectionOrder": 2,
"isActive": true
}
]
}
application/xml, text/xml
Sample:
<ScribeInstantSettingRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScribingSoftware.Model.DTO">
<EnableTranscript>true</EnableTranscript>
<GptModelId>1</GptModelId>
<LanguageAccentId>1</LanguageAccentId>
<LanguageId>1</LanguageId>
<ProviderId>1</ProviderId>
<ReportSections>
<ScribeInstantReportSectionsDTO>
<IsActive>true</IsActive>
<LLMReportId>1</LLMReportId>
<SectionOrder>2</SectionOrder>
</ScribeInstantReportSectionsDTO>
<ScribeInstantReportSectionsDTO>
<IsActive>true</IsActive>
<LLMReportId>1</LLMReportId>
<SectionOrder>2</SectionOrder>
</ScribeInstantReportSectionsDTO>
</ReportSections>
<VisitTypeId>1</VisitTypeId>
</ScribeInstantSettingRequestDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |