GET Lender Token


URL POINT: https://api.bridgeaccess.life/lender/get_lender_token?id={lender id}

Parameter:
lender id – Lender ID given by access to lender to generate token for accessing api's


RETURN VALUES



{
  "success": "true",
  "token":"{generated token}",
  "message": "Token generated, please use this token immediately for this will expire within 1 hour"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}

GET Lender Loan List


URL POINT: https://api.bridgeaccess.life/lender/get_loan_ids?token={token}

Parameter:
Token – generated access token
Statuses included - Pending, Approved, Approved With Terms, Missing Information, Approved with Updated Bank Details


RETURN VALUES



{
  "success": "true",
  "list":"{list of ids, names, status}",
  "message": "Loan list generated"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}

GET Profile & Loan Details


URL POINT: https://api.bridgeaccess.life/loans_profile/loan_profile_details?token={token}&loan_id={loan_id}

Parameters:
Loan Id – Loan Id that corresponds with the loan id on the Access Platform
Token – Access Platform token


RETURN VALUES



{
  "success": true,
  "profile": {
    "loan_id": "3894",
    "client_id": "8888",
    "fname": "Sample",
    "mname": "Sample",
    "lname": "Sample",
    "gender": "Male",
    "civil_status": "Single",
    "birthdate": "1970-01-01",
    "cellphone_no": "09164032614",
    "email": "sample@gmail.com",
    "company": Bridge Southeast Asia,
    "position": "test",
    "permanent_address": "Quezon City PH Quezon City PH, Quezon City WV 1117",
    "employee_date": "2020-09-10",
    "disbursement_type": "bank",
    "bank_name": "Union Bank",
    "account_name": "Sample Account Name",
    "account_number": "99999999",
    "gross_salary": "20,000",
    "tin": "12345678910",
    "sss_gsis": "12345678910",
    "postal_code": "1117",
    "salary_date_one": "05-05",
    "salary_date_two": "05-20",
    "employment_type": "project based",
    "contract_start_date": "2019-09-10",
    "contract_end_date": "2020-09-10",
    "reference_name1": "Ndnfhc",
    "reference_contact_number1": "47686",
    "reference_address1": "Hfjfjf",
    "reference_relationship1": "Nfnf",
    "reference_name2": "Bfnfh",
    "reference_contact_number2": "865656",
    "reference_address2": "Jffjfj",
    "reference_relationship2": "Ndcn"
  },
  "loan_details": {
    "loan_type": "11",
    "loan_amount_requested": "12000",
    "terms": "6",
    "terms_conditions": null,
    "loan_status": "approved",
    "loan_reason": "Educational",
    "date_applied": "2020-09-11 15:19:36",
    "date_modified": "2020-09-11 21:19:36"
  }
  "active_loans": [
    {
      "last_deduction_date": "2020-09-11 15:19:36",
      "outstanding_balance": "10,488.88",
      "monthly_deduction": "2,622.22",
    }
  ] }


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This loan id is not connected with this lender!"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application not existent"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application is for review of the company`s HR"
}

POST Approve Loan


URL POINT: https://api.bridgeaccess.life/loans_profile/loan_profile_details

Note :
To check if the approved loan terms and documents are already accepted please refer to the electronic signature end point

Parameters:
Loan Id – Loan Id that corresponds with the loan id on the Access Platform
Format - (int) | Ex. 4114
Token – Access Platform token
Format - (varchar|encoded) | Ex. "ZXlKMGVYQWlPaUpLVjFRaUxDSmhiR2...."
Loan Amount Approved – Amount approved by the lender
Format - (int) | Ex. 12000
Monthly Deduction – Amount set by the lender that will be deducted monthly
Format - (int) | Ex. 6000
Comment – Lender comment for the application
Format - (varchar) | Ex. "comment here"
Interest – Lender interest rate for the application
Format - (float) | Ex. 0.05
First Due Date – First date of deduction from the Lender (see below Billing and Due Date Schedule)
Format - (date) | Ex. "2020-11-01"
Loan Status – Status update for approve ('approved')
Format - (varchar) | Ex. "approved"
Term – Months on which the loan will be computed
Format - (int) | Ex. 3


Sample POST JSON :
{
  "token" : "ZXlKMGVYQWlPaUpLVjFRaUxDSmhiR2....",
  "loan_id" : "4514",
  "loan_amount_app": "12000",
  "monthly_deduct": "6000",
  "terms": "12",
  "interest": "0.5",
  "first_due_date": "2020-11-10",
  "loan_status": "approved",
  "comment": "approved"
}


RETURN VALUES



{
  "success": true,
  "message": "Loan Application status successfuly updated"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This loan id is not connected with this lender!"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application not existent"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application is for review of the company`s HR"
}


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Some values are missing",
  "errorFields": "Terms,Approved Amount,Monthly Deduction,Comment,Interest Rate,First Due Date, Loan Status"
}


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Loan Application status cannot be changed due to status requirement"
}

GET Missing Information


URL POINT: https://api.bridgeaccess.life/loans_profile/loan_profile_details

Parameters:
Loan Id – Loan Id that corresponds with the loan id on the Access Platform
Format - (int) | Ex. 4114
Token – Access Platform token
Format - (varchar|encoded) | Ex. "ZXlKMGVYQWlPaUpLVjFRaUxDSmhiR2...."
Comment – Lender comment for what is missing in the application
Format - (varchar) | Ex. "missing information"
Loan Status – Status update for missing information ('missing_information')
Format - (varchar) | Ex. "missing_information"
Missing Fields – Specific tagging of fields
Format - (varchar) | Ex. "Address,Date of Birth"
Options only Detected - Address, Date of Birth, Valid Id, Payslip1, Payslip2, Bank Information, Others


Sample POST JSON :
{
  "token" : "ZXlKMGVYQWlPaUpLVjFRaUxDSmhiR2....",
  "loan_id" : "4514",
  "loan_status": "missing_information",
  "comment": "missing_information"
  "missing_document_fields": "Address"
}


RETURN VALUES



{
  "success": true,
  "message": "Loan Application status successfuly updated"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This loan id is not connected with this lender!"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application not existent"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application is for review of the company`s HR"
}


{
  "success": false,
  "error": "Loan Update",
  "errorDescription": "Some values are missing",
  "errorFields(comment)": "Comment on the missing information is missing",
  "errorFields(missing_document_fields)": "Missing Checklist on the missing information is missing" }


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Loan Application status cannot be changed due to status requirement"
}

GET Disapprove Loan


URL POINT: https://api.bridgeaccess.life/loans_profile/loan_profile_details

Parameters:
Loan Id – Loan Id that corresponds with the loan id on the Access Platform
Format - (int) | Ex. 4114
Token – Access Platform token
Format - (varchar|encoded) | Ex. "ZXlKMGVYQWlPaUpLVjFRaUxDSmhiR2...."
Loan Status – Status update for disapproved ('disapproved')
Format - (varchar) | Ex. "disapproved"
Comment – Lender comment for what is missing in the application
Format - (varchar) | Ex. "disapproved due to incomplete details"


Sample POST JSON :
{
  "token" : "ZXlKMGVYQWlPaUpLVjFRaUxDSmhiR2....",
  "loan_id" : "4514",
  "loan_status": "disapproved",
  "comment": "disapproved due to incomplete details"
}


RETURN VALUES



{
  "success": true,
  "message": "Loan Application status successfuly updated"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This loan id is not connected with this lender!"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application not existent"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application is for review of the company`s HR"
}


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Some values are missing",
  "errorFields": "Loan Status,Comment"
}


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Loan Application status cannot be changed due to status requirement"
}


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Comment on the missing information is missing"
}

GET Failed Disbursement Loan


URL POINT: https://api.bridgeaccess.life/loans_profile/loan_profile_details

Parameters:
Loan Id – Loan Id that corresponds with the loan id on the Access Platform
Format - (int) | Ex. 4114
Token – Access Platform token
Format - (varchar|encoded) | Ex. "ZXlKMGVYQWlPaUpLVjFRaUxDSmhiR2...."
Loan Status – Status update for failed disbursement ('failed_disbursement')
Format - (varchar) | Ex. "failed_disbursement"
Comment – Lender comment for what is missing in the application
Format - (varchar) | Ex. "Bank Failed Disbursement"


Sample POST JSON :
{
  "token" : "ZXlKMGVYQWlPaUpLVjFRaUxDSmhiR2....",
  "loan_id" : "4514",
  "loan_status": "failed_disbursement",
  "comment": "Bank Failed Disbursement"
}


RETURN VALUES



{
  "success": true,
  "message": "Loan Application status successfuly updated"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This loan id is not connected with this lender!"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application not existent"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application is for review of the company`s HR"
}


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Some values are missing",
  "errorFields": "Loan Status,Comment"
}


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Loan Application status cannot be changed due to status requirement"
}


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Comment on the missing information is missing"
}

GET Fund Loan


URL POINT: https://api.bridgeaccess.life/loans_profile/loan_profile_details

Parameters:
Loan Id – Loan Id that corresponds with the loan id on the Access Platform
Format - (int) | Ex. 4514
Token – Access Platform token
Format - (varchar|encoded) | Ex. "ZXlKMGVYQWlPaUpLVjFRaUxDSmhiR2...."
Loan Amount Approved - Loan amount that is funded and approved
Format - (int) | Ex. 12000
Loan Status – Status of application (funded)
Format - (varchar) | Ex. "funded"
Funded Date – date when application was funded
Format - (date) | Ex. 2020-11-01
Receipt String - base 64 encoded receipt proof of funding (image/screenshot - deposit slip, reference number)
Format - (varchar|encoded) | Ex. "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA6QAAAARnQU...."


Sample POST JSON :
{
  "token" : "ZXlKMGVYQWlPaUpLVjFRaUxDSmhiR2....",
  "loan_id" : "4514",
  loan_amount_app": "12000",
  "date_funded": "2020-11-03",
  "loan_status": "funded",
  "comment": "approved",
  "receipt_string":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAkIAAAKyCAYAAAA5NbEZAAAAAXNSR0IArs4c....
}


RETURN VALUES



{
  "success": true,
  "message": "Loan Application status successfuly updated"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This loan id is not connected with this lender!"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application not existent"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application is for review of the company`s HR"
}


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Some values are missing",
  "errorFields": "Loan Amount Approved,Date Funded, Comment, Receipt"
}


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Loan Application status cannot be changed due to status requirement"
}

GET Electronic Signature


URL POINT: https://api.bridgeaccess.life/lender/lender_documents

Parameters:
Loan Id – Loan Id that corresponds with the loan id on the Access Platform
Token – Access Platform token


RETURN VALUES



{
  "loan_id": "001",
  "name": "Sample Sample",
  "contact_no": "09164032614",
  "accepted_date": "2020-09-10 10:01:00",
  "success": true
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This loan id is not connected with this lender!"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application not existent"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application is for review of the company`s HR"
}


{
  "success": "false",
  "error": "Loan Update",
  "errorDescription": "Loan Application status cannot be changed due to status requirement"
}

GET Borrower Documents


URL POINT: https://api.bridgeaccess.life/borrower_documents/borrower_documents?token={token}&loan_id={loan_id}

Parameter:
Loan Id – Loan Id that corresponds with the loan id on the Access Platform
Token – Access Platform token

Success Return Values :
Company Id - Company Id of the borrower
Government Id - TIN, SSS, UMID
Signature - A copy of the borrowers signature
Payslip One - 1st Cutoff of the Payslip
Payslip Two - 2nd Cutoff of the Payslip
Recent Photo


RETURN VALUES



{
  "documents": {
    "loan_id": "001",
    "company_id": "base_64_encoded",
    "government_id": "base_64_encoded",
    "signature_specimen": base_64_encoded,
    "payslip1": "base_64_encoded",
    "payslip2": "base_64_encoded",
    "recent_photo":"base_64_encoded"
  },
  "success": true
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This loan id is not connected with this lender!"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application not existent"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application is for review of the company`s HR"
}

POST Upload Documents


URL POINT: https://api.bridgeaccess.life/lender/lender_documents

Parameter:
Loan Id – Loan Id that corresponds with the loan id on the Access Platform
Format - (int) | Ex. 5414
Promissory Note – base_64 encoded image/pdf
Format - (varchar|encoded) | Ex. "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA6QAAAARnQU...."
Disclosure Statement – base_64 encoded image/pdf
Format - (varchar|encoded) | Ex. "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA6QAAAARnQU...."
Authority to deduct – base_64 encoded image/pdf
Format - (varchar|encoded) | Ex. "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA6QAAAARnQU...."
Amortization Schedule – base_64 encoded image/pdf
Format - (varchar|encoded) | Ex. "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA6QAAAARnQU...."
Loan Privacy – base_64 encoded image/pdf
Format - (varchar|encoded) | Ex. "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA6QAAAARnQU...."


Sample POST JSON :
{
  "token" : "ZXlKMGVYQWlPaUpLVjFRaUxDSmhiR2....",
  "loan_id" : "4514",
  "promissory_note":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAkIAAAKyCAYAAAA5NbEZAAAAAXNSR0IArs4c....
  "disclosure_statement":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAkIAAAKyCAYAAAA5NbEZAAAAAXNSR0IArs4c....
  "authority_deduct":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAkIAAAKyCAYAAAA5NbEZAAAAAXNSR0IArs4c....
  "amortization_schedule":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAkIAAAKyCAYAAAA5NbEZAAAAAXNSR0IArs4c....
  "loan_privacy":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAkIAAAKyCAYAAAA5NbEZAAAAAXNSR0IArs4c....
}



RETURN VALUES



{
  "success": true,
  "message": "Lender's Document successfuly uploaded"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This loan id is not connected with this lender!"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application not existent"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application is for review of the company`s HR"
}


{
  "success": "false",
  "error": "Lender Document Update",
  "errorDescription": "Loan Application is not yet approved, upload failed"
}


{
  "success": "false",
  "error": "Lender Document Update",
  "errorDescription": "Some documents are missing"
  "errorFields" : "Promissory Note, Authority to Deduct ..."
}


{
  "success": "false",
  "error": "Lender Documents",
  "errorDescription": "Base 64 code incomplete! Please check {document name}"
}

GET Loan Repayment


URL POINT: https://api.bridgeaccess.life/loans_profile/loan_repayment_list?token={token}&loan_id={loan_id}

Parameters:
Loan Id – Loan Id that corresponds with the loan id on the Access Platform
Token – Access Platform token


RETURN VALUES



{
  "success": true,
  "message" : "Loan Application Repayment list retrieved",
  "loan_repayment": {
    "payment_date": "2020-01-01",
    "date_paid": "2020-01-01",
    "paid_amount": "1",
    "payment_amount": "1",
    "interest_amount": "1",
    "breakdown": "1",
    "balance": "1",
    "payment_status": "pending",
  }
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This loan id is not connected with this lender!"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "Loan Application not existent"
}

GET Bank List


URL POINT: https://api.bridgeaccess.life/lender/bank_list?token={token}

Parameters:
Token – Access Platform token


RETURN VALUES



{
  "success": true,
  "message" : "Bank List retrieved",
  "bank_list": {
    "bank_id": "99999999",
    "bank_code": "MJC",
    "bank_name": "Sample Bank Name",
  }
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "API access is disabled"
}


{
  "success": "false",
  "error": "ID Error",
  "errorDescription": "Your id that you are using is either expired or does not exist, please contact administrator"
}


{
  "success": "false",
  "error": "Unauthorized",
  "errorDescription": "Lender ID does not exist within the system, please contact administrator"
}


{
  "success": "false",
  "error": "Loan Error",
  "errorDescription": "This token has already expired please generate a new one"
}