POST api/Payment/LoadAllpaymentList
Request Information
URI Parameters
None.
Body Parameters
PaymentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| paymentmasterid | integer |
None. |
|
| companymasterid | integer |
None. |
|
| studentmasterid | integer |
None. |
|
| studentname | string |
None. |
|
| fathername | string |
None. |
|
| fromdate | date |
None. |
|
| todate | date |
None. |
|
| totalhours | decimal number |
None. |
|
| rateid | integer |
None. |
|
| paymentnumber | integer |
None. |
|
| academicyearid | integer |
None. |
|
| paymentmodeid | integer |
None. |
|
| totalamount | integer |
None. |
|
| feedetails | Object |
None. |
|
| referenceno | integer |
None. |
|
| paymentdate | date |
None. |
|
| createdon | date |
None. |
|
| modifiedbyid | integer |
None. |
|
| modifiedon | date |
None. |
|
| isactive | integer |
None. |
|
| PaymentDetails | Collection of PaymentDetailModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"paymentmasterid": 1,
"companymasterid": 2,
"studentmasterid": 1,
"studentname": "sample string 3",
"fathername": "sample string 4",
"fromdate": "2026-07-11T22:50:00.6742725+05:30",
"todate": "2026-07-11T22:50:00.6742725+05:30",
"totalhours": 5.0,
"rateid": 1,
"paymentnumber": 1,
"academicyearid": 1,
"paymentmodeid": 1,
"totalamount": 1,
"feedetails": {},
"referenceno": 1,
"paymentdate": "2026-07-11T22:50:00.6742725+05:30",
"createdon": "2026-07-11T22:50:00.6742725+05:30",
"modifiedbyid": 1,
"modifiedon": "2026-07-11T22:50:00.6742725+05:30",
"isactive": 10,
"PaymentDetails": [
{
"paymentdetailid": 1,
"paymentmasterid": 2,
"feesetupid": 1,
"amount": 1,
"paymentmodeid": 1,
"createdon": "2026-07-11T22:50:00.6742725+05:30",
"modifiedbyid": 1,
"modifiedon": "2026-07-11T22:50:00.6742725+05:30",
"isactive": 5
},
{
"paymentdetailid": 1,
"paymentmasterid": 2,
"feesetupid": 1,
"amount": 1,
"paymentmodeid": 1,
"createdon": "2026-07-11T22:50:00.6742725+05:30",
"modifiedbyid": 1,
"modifiedon": "2026-07-11T22:50:00.6742725+05:30",
"isactive": 5
}
]
}
application/xml, text/xml
Sample:
<PaymentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/vcareapi.Models">
<PaymentDetails>
<PaymentDetailModel>
<amount>1</amount>
<createdon>2026-07-11T22:50:00.6742725+05:30</createdon>
<feesetupid>1</feesetupid>
<isactive>5</isactive>
<modifiedbyid>1</modifiedbyid>
<modifiedon>2026-07-11T22:50:00.6742725+05:30</modifiedon>
<paymentdetailid>1</paymentdetailid>
<paymentmasterid>2</paymentmasterid>
<paymentmodeid>1</paymentmodeid>
</PaymentDetailModel>
<PaymentDetailModel>
<amount>1</amount>
<createdon>2026-07-11T22:50:00.6742725+05:30</createdon>
<feesetupid>1</feesetupid>
<isactive>5</isactive>
<modifiedbyid>1</modifiedbyid>
<modifiedon>2026-07-11T22:50:00.6742725+05:30</modifiedon>
<paymentdetailid>1</paymentdetailid>
<paymentmasterid>2</paymentmasterid>
<paymentmodeid>1</paymentmodeid>
</PaymentDetailModel>
</PaymentDetails>
<academicyearid>1</academicyearid>
<companymasterid>2</companymasterid>
<createdon>2026-07-11T22:50:00.6742725+05:30</createdon>
<fathername>sample string 4</fathername>
<feedetails />
<fromdate>2026-07-11T22:50:00.6742725+05:30</fromdate>
<isactive>10</isactive>
<modifiedbyid>1</modifiedbyid>
<modifiedon>2026-07-11T22:50:00.6742725+05:30</modifiedon>
<paymentdate>2026-07-11T22:50:00.6742725+05:30</paymentdate>
<paymentmasterid>1</paymentmasterid>
<paymentmodeid>1</paymentmodeid>
<paymentnumber>1</paymentnumber>
<rateid>1</rateid>
<referenceno>1</referenceno>
<studentmasterid>1</studentmasterid>
<studentname>sample string 3</studentname>
<todate>2026-07-11T22:50:00.6742725+05:30</todate>
<totalamount>1</totalamount>
<totalhours>5</totalhours>
</PaymentModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResultViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
|
| errorCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"message": "sample string 2",
"data": {},
"errorCode": 4
}
application/xml, text/xml
Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/vcareapi.Models"> <data /> <errorCode>4</errorCode> <message>sample string 2</message> <status>true</status> </HttpResultViewModel>