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": "582b26b2-d4aa-4fb8-af2c-d5f4902ccc97",
"BranchLocationId": "5c3c70bc-584f-4b0c-9007-43d0748620d5",
"PhoneCallDateTime": "2026-01-21T15:37:31.9531146+05:00",
"CallStatus": 1,
"CallResponse": "sample string 2",
"AppointmentNo": "sample string 3",
"UserId": "2f50f6fc-bc62-4736-ae64-b3b3cdc5361c"
}
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>5c3c70bc-584f-4b0c-9007-43d0748620d5</BranchLocationId> <CallResponse>sample string 2</CallResponse> <CallStatus>1</CallStatus> <PatientId>582b26b2-d4aa-4fb8-af2c-d5f4902ccc97</PatientId> <PhoneCallDateTime>2026-01-21T15:37:31.9531146+05:00</PhoneCallDateTime> <UserId>2f50f6fc-bc62-4736-ae64-b3b3cdc5361c</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.