POST api/Appointments/SaveOrderAndLab
Request Information
URI Parameters
None.
Body Parameters
AppointmentOrderAndLabRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| PatientAppointmentId | integer |
None. |
|
| Transcript | string |
None. |
|
| AudioFilePath | string |
None. |
|
| IsActive | boolean |
None. |
|
| CreatedOn | date |
None. |
|
| IsStat | boolean |
None. |
|
| StatTime | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"patientAppointmentId": 1,
"transcript": "sample string 2",
"audioFilePath": "sample string 3",
"isActive": true,
"createdOn": "2025-12-12T17:24:46.6057635+05:30",
"isStat": true,
"statTime": 1
}
application/xml, text/xml
Sample:
<AppointmentOrderAndLabRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScribingSoftware.Model.AppointmentDTO"> <AudioFilePath>sample string 3</AudioFilePath> <CreatedOn>2025-12-12T17:24:46.6057635+05:30</CreatedOn> <Id>1</Id> <IsActive>true</IsActive> <IsStat>true</IsStat> <PatientAppointmentId>1</PatientAppointmentId> <StatTime>1</StatTime> <Transcript>sample string 2</Transcript> </AppointmentOrderAndLabRequestDTO>
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. |