Unverified Commit f6831271 authored by Shishir Suman's avatar Shishir Suman Committed by GitHub
Browse files

APIs for Transaction Record endpoints

No related merge requests found
Showing with 32 additions and 0 deletions
+32 -0
......@@ -564,6 +564,38 @@ const endpoints = [
method: "post",
route: "/api/rest/getAllInstituteDrafts",
requestBody: ["searchString","offsetNo", "limit"],
},
{
method: "put",
route: "/api/rest/saveTransactionRecord",
requestBody: [
"created_by",
"invoice_date",
"invoice_id",
"invoice_time",
"payer_id",
"payer_type",
"payment_mode",
"reference_no",
"refund_date",
"refund_id",
"refund_status",
"refund_time",
"transaction_amount",
"transaction_date",
"transaction_status",
"transaction_time"
],
},
{
method: "post",
route: "/api/rest/getAllTransactionRecords",
requestBody: ["offsetNo", "limit"],
},
{
method: "post",
route: "/api/rest/filterAllTransactionRecords",
requestBody: ["param", "offsetNo", "limit"],
}
];
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment