POST api/account/InsertAppointmentCallDetails
Request Information
URI Parameters
None.
Body Parameters
DTOAppointmentCallDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientId | globally unique identifier |
None. |
|
| BranchLocationId | globally unique identifier |
None. |
|
| PhoneCallDateTime | date |
None. |
|
| CallStatus | integer |
None. |
|
| CallResponse | string |
None. |
|
| AppointmentNo | string |
None. |
|
| UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientId": "555ee3cf-3e82-488c-bfad-5ae5befd5885",
"BranchLocationId": "909a0820-4c39-4198-b36a-3f8f968f8dfb",
"PhoneCallDateTime": "2025-12-12T17:33:08.8030015+05:00",
"CallStatus": 1,
"CallResponse": "sample string 2",
"AppointmentNo": "sample string 3",
"UserId": "5bd8874c-8d42-4e76-8105-5da6fe87ebf3"
}
application/xml, text/xml
Sample:
<DTOAppointmentCallDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HomeCarePortal.BAL.DTOModels"> <AppointmentNo>sample string 3</AppointmentNo> <BranchLocationId>909a0820-4c39-4198-b36a-3f8f968f8dfb</BranchLocationId> <CallResponse>sample string 2</CallResponse> <CallStatus>1</CallStatus> <PatientId>555ee3cf-3e82-488c-bfad-5ae5befd5885</PatientId> <PhoneCallDateTime>2025-12-12T17:33:08.8030015+05:00</PhoneCallDateTime> <UserId>5bd8874c-8d42-4e76-8105-5da6fe87ebf3</UserId> </DTOAppointmentCallDetails>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.