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": "e84e6343-e76c-4a39-835c-73d2e2704eee",
"BranchLocationId": "52ab1c8e-ac85-4204-a333-ffdb6c84ef19",
"PhoneCallDateTime": "2025-12-06T09:50:32.3215626+05:00",
"CallStatus": 1,
"CallResponse": "sample string 2",
"AppointmentNo": "sample string 3",
"UserId": "f775f1db-e610-4ffe-a64e-ebe6a107f808"
}
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>52ab1c8e-ac85-4204-a333-ffdb6c84ef19</BranchLocationId> <CallResponse>sample string 2</CallResponse> <CallStatus>1</CallStatus> <PatientId>e84e6343-e76c-4a39-835c-73d2e2704eee</PatientId> <PhoneCallDateTime>2025-12-06T09:50:32.3215626+05:00</PhoneCallDateTime> <UserId>f775f1db-e610-4ffe-a64e-ebe6a107f808</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.