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": "d5ea60cb-e861-4d1e-afce-7d90beb12291",
"BranchLocationId": "770c9efb-8876-4fa1-b6bd-444b8f320bdc",
"PhoneCallDateTime": "2026-09-01T11:49:46.1737486+05:00",
"CallStatus": 1,
"CallResponse": "sample string 2",
"AppointmentNo": "sample string 3",
"UserId": "99d513ef-a19c-4c6e-8cbb-6b0c0188dacf"
}
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>770c9efb-8876-4fa1-b6bd-444b8f320bdc</BranchLocationId> <CallResponse>sample string 2</CallResponse> <CallStatus>1</CallStatus> <PatientId>d5ea60cb-e861-4d1e-afce-7d90beb12291</PatientId> <PhoneCallDateTime>2026-09-01T11:49:46.1737486+05:00</PhoneCallDateTime> <UserId>99d513ef-a19c-4c6e-8cbb-6b0c0188dacf</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.