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": "1d669c3f-83a7-49b7-afad-5a40bee5d698",
"BranchLocationId": "a769e308-4d7b-4755-8b9e-30a2d388076d",
"PhoneCallDateTime": "2025-12-06T09:28:39.2624358+05:00",
"CallStatus": 1,
"CallResponse": "sample string 2",
"AppointmentNo": "sample string 3",
"UserId": "f8f4db2b-93ad-448d-a3ea-841e580973b4"
}
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>a769e308-4d7b-4755-8b9e-30a2d388076d</BranchLocationId> <CallResponse>sample string 2</CallResponse> <CallStatus>1</CallStatus> <PatientId>1d669c3f-83a7-49b7-afad-5a40bee5d698</PatientId> <PhoneCallDateTime>2025-12-06T09:28:39.2624358+05:00</PhoneCallDateTime> <UserId>f8f4db2b-93ad-448d-a3ea-841e580973b4</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.