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": "1f1ab5da-a258-4599-bb6e-e477f0223f19",
"BranchLocationId": "d805fa5e-784c-4ec1-b7b5-e636cfbb7b0d",
"PhoneCallDateTime": "2026-02-04T07:07:27.0140053+05:00",
"CallStatus": 1,
"CallResponse": "sample string 2",
"AppointmentNo": "sample string 3",
"UserId": "60e9b29c-1702-4b81-a609-a77ebaa94ed0"
}
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>d805fa5e-784c-4ec1-b7b5-e636cfbb7b0d</BranchLocationId> <CallResponse>sample string 2</CallResponse> <CallStatus>1</CallStatus> <PatientId>1f1ab5da-a258-4599-bb6e-e477f0223f19</PatientId> <PhoneCallDateTime>2026-02-04T07:07:27.0140053+05:00</PhoneCallDateTime> <UserId>60e9b29c-1702-4b81-a609-a77ebaa94ed0</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.