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": "3c776deb-1124-4d3e-9174-59c62ee5052b",
"BranchLocationId": "0660f606-e48b-4c36-ba1e-a7420738d8e5",
"PhoneCallDateTime": "2026-07-07T14:54:50.4772651+05:00",
"CallStatus": 1,
"CallResponse": "sample string 2",
"AppointmentNo": "sample string 3",
"UserId": "880b931c-a544-4f34-896e-43a6078a9ba9"
}
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>0660f606-e48b-4c36-ba1e-a7420738d8e5</BranchLocationId> <CallResponse>sample string 2</CallResponse> <CallStatus>1</CallStatus> <PatientId>3c776deb-1124-4d3e-9174-59c62ee5052b</PatientId> <PhoneCallDateTime>2026-07-07T14:54:50.4772651+05:00</PhoneCallDateTime> <UserId>880b931c-a544-4f34-896e-43a6078a9ba9</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.