GET Api/FrontDeskDashboard/PrintDepositSlip
Request Information
URI Parameters
None.
Body Parameters
PurchaseOrderDepositSlipVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Clinic | string |
None. |
|
| Date | date |
None. |
|
| TotalCach | decimal number |
None. |
|
| TotalCheck | integer |
None. |
|
| TotalCredit | decimal number |
None. |
|
| TotalDeposit | decimal number |
None. |
|
| CashNotCheck | Collection of PurchaseOrderCashNotCheckVm |
None. |
|
| CashCheck | Collection of PurchaseOrderCashNotCheckVm |
None. |
Request Formats
application/json, text/json
Sample:
{
"clinic": "sample string 1",
"date": "2026-05-06T04:29:02.2559386+02:00",
"totalCach": 3.1,
"totalCheck": 4,
"totalCredit": 5.1,
"totalDeposit": 6.1,
"cashNotCheck": [
{
"patientName": "sample string 1",
"patientPaid": 2.1
},
{
"patientName": "sample string 1",
"patientPaid": 2.1
}
],
"cashCheck": [
{
"patientName": "sample string 1",
"patientPaid": 2.1
},
{
"patientName": "sample string 1",
"patientPaid": 2.1
}
]
}
text/html
Sample:
{"clinic":"sample string 1","date":"2026-05-06T04:29:02.2559386+02:00","totalCach":3.1,"totalCheck":4,"totalCredit":5.1,"totalDeposit":6.1,"cashNotCheck":[{"patientName":"sample string 1","patientPaid":2.1},{"patientName":"sample string 1","patientPaid":2.1}],"cashCheck":[{"patientName":"sample string 1","patientPaid":2.1},{"patientName":"sample string 1","patientPaid":2.1}]}
application/xml, text/xml
Sample:
<PurchaseOrderDepositSlipVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UrgentCareExtra.ViewModels.ViewModels.PurchaseOrder">
<CashCheck>
<PurchaseOrderCashNotCheckVm>
<PatientName>sample string 1</PatientName>
<PatientPaid>2.1</PatientPaid>
</PurchaseOrderCashNotCheckVm>
<PurchaseOrderCashNotCheckVm>
<PatientName>sample string 1</PatientName>
<PatientPaid>2.1</PatientPaid>
</PurchaseOrderCashNotCheckVm>
</CashCheck>
<CashNotCheck>
<PurchaseOrderCashNotCheckVm>
<PatientName>sample string 1</PatientName>
<PatientPaid>2.1</PatientPaid>
</PurchaseOrderCashNotCheckVm>
<PurchaseOrderCashNotCheckVm>
<PatientName>sample string 1</PatientName>
<PatientPaid>2.1</PatientPaid>
</PurchaseOrderCashNotCheckVm>
</CashNotCheck>
<Clinic>sample string 1</Clinic>
<Date>2026-05-06T04:29:02.2559386+02:00</Date>
<TotalCach>3.1</TotalCach>
<TotalCheck>4</TotalCheck>
<TotalCredit>5.1</TotalCredit>
<TotalDeposit>6.1</TotalDeposit>
</PurchaseOrderDepositSlipVm>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.