POST api/material/payment
To post Payment
Request Information
URI Parameters
None.
Body Parameters
mlpayment| Name | description | Type | Additional information |
|---|---|---|---|
| Paymentid | Collection of mlpaymenttrans |
None. |
|
| Amount | string |
None. |
|
| Paymode | string |
None. |
|
| Transno | string |
None. |
|
| TransDate | date |
None. |
|
| BankName | string |
None. |
|
| Legerid | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Amount": "sample string 1",
"BankName": "sample string 5",
"Legerid": 6,
"Paymentid": [
{
"ordertrans": "be5ecb3e-74e7-46fe-abd9-7e0a629f2789"
},
{
"ordertrans": "be5ecb3e-74e7-46fe-abd9-7e0a629f2789"
}
],
"Paymode": "sample string 2",
"TransDate": "2025-12-11T09:53:06.224+05:30",
"Transno": "sample string 3"
}
application/xml, text/xml
Sample:
<mlpayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Systemic.MLM.Model.Material">
<Amount>sample string 1</Amount>
<BankName>sample string 5</BankName>
<Legerid>6</Legerid>
<Paymentid>
<mlpaymenttrans>
<ordertrans>be5ecb3e-74e7-46fe-abd9-7e0a629f2789</ordertrans>
</mlpaymenttrans>
<mlpaymenttrans>
<ordertrans>be5ecb3e-74e7-46fe-abd9-7e0a629f2789</ordertrans>
</mlpaymenttrans>
</Paymentid>
<Paymode>sample string 2</Paymode>
<TransDate>2025-12-11T09:53:06.2241651+05:30</TransDate>
<Transno>sample string 3</Transno>
</mlpayment>
response Information
Resource description
ApiResponse| Name | description | Type | Additional information |
|---|---|---|---|
| response | string |
Required |
|
| failure | MlError |
None. |
|
| success | MlSuccess |
None. |