v1

latestOpenAPI 3.0.32026-07-2621102.1 MB
Loan

Get Loan Transaction History

Use Get Loan Transaction History endpoint to provide a complete history of the transaction data associated with a particular business or consumer loan. Transaction data includes but is not limited to when a loan is created and funds disbursed, when fees were assessed, charged, waived, or reversed, and when a loan was charged off.

For optional parameters, do not pass an empty string or null value.

post/1.0/getLoanTransactionHistory

Response

Success

status_codeinteger nullable required

The response status code. May return a string for some statuses.

statusstring nullable required

The condition of a process or response

processing_timenumber float nullable required

The time elapsed in processing the transaction

system_timestampstring date-time nullable required

A system generated timestamp

rtokenstring nullable required

A Galileo-generated ID used for tracking

errorsstring[]

A list of errors generated while the request was processed

Example response

{
  "response_data": {
    "principal_balance": 10000,
    "loan_transactions": [
      {
        "loan_transaction_id": "450825953",
        "transaction_code": 9006,
        "transaction_amount": 100,
        "reversal_flag": true,
        "charge_code": 8,
        "loan_transaction_date": "2023-01-01",
        "loan_transaction_effective_date": "2023-01-01",
        "loan_payment_number": "123",
        "payment_source": "USRP",
        "total_charge_off_amount": 100,
        "loan_status_reason_code": 1010,
        "amount_type": 4
      }
    ],
    "page": 1,
    "total_record_count": 10,
    "number_of_pages": 5
  }
}