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": "be314bf1-875e-4df9-8ab0-891f787ed48f",
"BranchLocationId": "8a2f1b2d-7207-4743-9935-a4984dde925f",
"PhoneCallDateTime": "2026-03-18T14:59:17.6107051+05:00",
"CallStatus": 1,
"CallResponse": "sample string 2",
"AppointmentNo": "sample string 3",
"UserId": "8fb197fc-c8a7-4334-9f0c-5084384bb7e9"
}
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>8a2f1b2d-7207-4743-9935-a4984dde925f</BranchLocationId> <CallResponse>sample string 2</CallResponse> <CallStatus>1</CallStatus> <PatientId>be314bf1-875e-4df9-8ab0-891f787ed48f</PatientId> <PhoneCallDateTime>2026-03-18T14:59:17.6107051+05:00</PhoneCallDateTime> <UserId>8fb197fc-c8a7-4334-9f0c-5084384bb7e9</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.