POST api/Payment/SaveMemberPayments
Request Information
URI Parameters
None.
Body Parameters
BulkPaymentModal| Name | Description | Type | Additional information |
|---|---|---|---|
| Payments | Collection of PaymentModal |
None. |
Request Formats
application/json, text/json
Sample:
{
"Payments": [
{
"MemberId": 1,
"SerialNumber": "sample string 2",
"CallSheetBillId": 3,
"GrossAmount": 4.0,
"TDSAmount": 5.0,
"UnionDeduction": 6.0,
"LoanDeduction": 7.0,
"NetPayable": 8.0,
"LoanRepaymentId": 1,
"PaymentMode": 64,
"ReceiptNo": "sample string 10",
"Remarks": "sample string 11"
},
{
"MemberId": 1,
"SerialNumber": "sample string 2",
"CallSheetBillId": 3,
"GrossAmount": 4.0,
"TDSAmount": 5.0,
"UnionDeduction": 6.0,
"LoanDeduction": 7.0,
"NetPayable": 8.0,
"LoanRepaymentId": 1,
"PaymentMode": 64,
"ReceiptNo": "sample string 10",
"Remarks": "sample string 11"
}
]
}
application/xml, text/xml
Sample:
<BulkPaymentModal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UnionOwnersBackend.Models">
<Payments>
<PaymentModal>
<CallSheetBillId>3</CallSheetBillId>
<GrossAmount>4</GrossAmount>
<LoanDeduction>7</LoanDeduction>
<LoanRepaymentId>1</LoanRepaymentId>
<MemberId>1</MemberId>
<NetPayable>8</NetPayable>
<PaymentMode>64</PaymentMode>
<ReceiptNo>sample string 10</ReceiptNo>
<Remarks>sample string 11</Remarks>
<SerialNumber>sample string 2</SerialNumber>
<TDSAmount>5</TDSAmount>
<UnionDeduction>6</UnionDeduction>
</PaymentModal>
<PaymentModal>
<CallSheetBillId>3</CallSheetBillId>
<GrossAmount>4</GrossAmount>
<LoanDeduction>7</LoanDeduction>
<LoanRepaymentId>1</LoanRepaymentId>
<MemberId>1</MemberId>
<NetPayable>8</NetPayable>
<PaymentMode>64</PaymentMode>
<ReceiptNo>sample string 10</ReceiptNo>
<Remarks>sample string 11</Remarks>
<SerialNumber>sample string 2</SerialNumber>
<TDSAmount>5</TDSAmount>
<UnionDeduction>6</UnionDeduction>
</PaymentModal>
</Payments>
</BulkPaymentModal>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />