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": "549b05e2-0da4-4ece-a702-c2ca95ab75d7",
"BranchLocationId": "91cac8b4-3bdb-4387-b02e-71cd266bb1e5",
"PhoneCallDateTime": "2026-09-01T11:47:59.6432501+05:00",
"CallStatus": 1,
"CallResponse": "sample string 2",
"AppointmentNo": "sample string 3",
"UserId": "f033559f-2bee-4caa-a52b-4e884249f4ad"
}
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>91cac8b4-3bdb-4387-b02e-71cd266bb1e5</BranchLocationId> <CallResponse>sample string 2</CallResponse> <CallStatus>1</CallStatus> <PatientId>549b05e2-0da4-4ece-a702-c2ca95ab75d7</PatientId> <PhoneCallDateTime>2026-09-01T11:47:59.6432501+05:00</PhoneCallDateTime> <UserId>f033559f-2bee-4caa-a52b-4e884249f4ad</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.