loan info API added

This commit is contained in:
victorAnumudu
2025-03-04 15:49:43 +01:00
parent 9d7cb31094
commit 0064f5e4c3
4 changed files with 19 additions and 22 deletions
+6
View File
@@ -98,4 +98,10 @@ export const getProducts = (reqData) => {
export const getOffers = (reqData) => {
const postData = { ...reqData }
return getAuxEnd(`/salary/loanoffers`, postData)
}
// FUNCTION TO GET LOAN INFO
export const getLoanInfo = (reqData) => {
const postData = { ...reqData }
return getAuxEnd(`/loan/info`, postData)
}