curl --request GET \
--url http://localhost:5000/api/finance/list
[
{
"_id": "64c5d8b3e2f1a0b4c5d6e7f8",
"studentId": "64a1f2c3e4b0d5f6a7b8c9d0",
"amount": 250,
"status": "PENDING",
"__v": 0
},
{
"_id": "64c5d8b3e2f1a0b4c5d6e7f9",
"studentId": "64a1f2c3e4b0d5f6a7b8c9d2",
"amount": 500,
"status": "PAID",
"__v": 0
},
{
"_id": "64c5d8b3e2f1a0b4c5d6e7fa",
"studentId": "64a1f2c3e4b0d5f6a7b8c9d3",
"amount": 175,
"status": "OVERDUE",
"__v": 0
}
]
Retrieve all fee records in the system.
curl --request GET \
--url http://localhost:5000/api/finance/list
[
{
"_id": "64c5d8b3e2f1a0b4c5d6e7f8",
"studentId": "64a1f2c3e4b0d5f6a7b8c9d0",
"amount": 250,
"status": "PENDING",
"__v": 0
},
{
"_id": "64c5d8b3e2f1a0b4c5d6e7f9",
"studentId": "64a1f2c3e4b0d5f6a7b8c9d2",
"amount": 500,
"status": "PAID",
"__v": 0
},
{
"_id": "64c5d8b3e2f1a0b4c5d6e7fa",
"studentId": "64a1f2c3e4b0d5f6a7b8c9d3",
"amount": 175,
"status": "OVERDUE",
"__v": 0
}
]
Returns an array of all fee records stored in the database.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/praveenarya123/sps-backend/llms.txt
Use this file to discover all available pages before exploring further.
studentId on the client side.PENDING, PAID, OVERDUE).curl --request GET \
--url http://localhost:5000/api/finance/list
[
{
"_id": "64c5d8b3e2f1a0b4c5d6e7f8",
"studentId": "64a1f2c3e4b0d5f6a7b8c9d0",
"amount": 250,
"status": "PENDING",
"__v": 0
},
{
"_id": "64c5d8b3e2f1a0b4c5d6e7f9",
"studentId": "64a1f2c3e4b0d5f6a7b8c9d2",
"amount": 500,
"status": "PAID",
"__v": 0
},
{
"_id": "64c5d8b3e2f1a0b4c5d6e7fa",
"studentId": "64a1f2c3e4b0d5f6a7b8c9d3",
"amount": 175,
"status": "OVERDUE",
"__v": 0
}
]