POST api/SpeechToText/SaveConversationData
Request Information
URI Parameters
None.
Body Parameters
ConversationDataDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| GptModelId | integer |
None. |
|
| ProviderName | string |
None. |
|
| ProviderId | integer |
None. |
|
| CreatedOn | date |
None. |
|
| LanguageId | integer |
None. |
|
| Specialization | integer |
None. |
|
| IsActive | boolean |
None. |
|
| PatientId | integer |
None. |
|
| TemplateId | integer |
None. |
|
| VisitTypeId | integer |
None. |
|
| LLMTimeTaken | integer |
None. |
|
| PatientConsent | boolean |
None. |
|
| EncounterType | string |
None. |
|
| AudioLength | string |
None. |
|
| ChartStatus | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"gptModelId": 1,
"providerName": "sample string 2",
"providerId": 1,
"createdOn": "2025-12-12T17:22:08.3109371+05:30",
"languageId": 1,
"specialization": 1,
"isActive": true,
"patientId": 1,
"templateId": 1,
"visitTypeId": 1,
"llmTimeTaken": 3,
"patientConsent": true,
"encounterType": "sample string 5",
"audioLength": "sample string 6",
"chartStatus": "sample string 7"
}
application/xml, text/xml
Sample:
<ConversationDataDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScribingSoftware.Model.DTO"> <AudioLength>sample string 6</AudioLength> <ChartStatus>sample string 7</ChartStatus> <CreatedOn>2025-12-12T17:22:08.3109371+05:30</CreatedOn> <EncounterType>sample string 5</EncounterType> <GptModelId>1</GptModelId> <Id>1</Id> <IsActive>true</IsActive> <LLMTimeTaken>3</LLMTimeTaken> <LanguageId>1</LanguageId> <PatientConsent>true</PatientConsent> <PatientId>1</PatientId> <ProviderId>1</ProviderId> <ProviderName>sample string 2</ProviderName> <Specialization>1</Specialization> <TemplateId>1</TemplateId> <VisitTypeId>1</VisitTypeId> </ConversationDataDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.