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": "429da94b-a326-437e-8444-3374ed32376c",
"BranchLocationId": "aa8ae6b5-05a6-4eb1-aaf9-7922e0da4b6a",
"PhoneCallDateTime": "2025-12-17T09:01:12.7605443+05:00",
"CallStatus": 1,
"CallResponse": "sample string 2",
"AppointmentNo": "sample string 3",
"UserId": "583cca43-d5f6-4600-bc55-74236fd79a8d"
}
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>aa8ae6b5-05a6-4eb1-aaf9-7922e0da4b6a</BranchLocationId> <CallResponse>sample string 2</CallResponse> <CallStatus>1</CallStatus> <PatientId>429da94b-a326-437e-8444-3374ed32376c</PatientId> <PhoneCallDateTime>2025-12-17T09:01:12.7605443+05:00</PhoneCallDateTime> <UserId>583cca43-d5f6-4600-bc55-74236fd79a8d</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.