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": "016aad74-b0cd-4808-b1be-3b96be9de42a",
"BranchLocationId": "549cccf0-3e6c-404c-b528-5548b9a4042e",
"PhoneCallDateTime": "2026-02-05T14:04:32.9352849+05:00",
"CallStatus": 1,
"CallResponse": "sample string 2",
"AppointmentNo": "sample string 3",
"UserId": "d6f79ba4-2a60-43a4-8818-3f4a85c013e5"
}
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>549cccf0-3e6c-404c-b528-5548b9a4042e</BranchLocationId> <CallResponse>sample string 2</CallResponse> <CallStatus>1</CallStatus> <PatientId>016aad74-b0cd-4808-b1be-3b96be9de42a</PatientId> <PhoneCallDateTime>2026-02-05T14:04:32.9352849+05:00</PhoneCallDateTime> <UserId>d6f79ba4-2a60-43a4-8818-3f4a85c013e5</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.