v1

latestOpenAPI 3.0.32026-07-24190128.9 KB

Get loan application status

Retrieve the status of an existing loan application journey against an loan ID (LID)

get/backend/{gatewayname}/v1/loanStatus

Path parameters

gatewaynamestring required

Query parameters

lidstring required

Required | LID to fetch the loan application for

Headers

x-gateway-secretstring required

Required | apiSecret shared for authentication

x-gateway-authtokenstring required

Required | JWT created with payload {"iss":"<your_gateway_name>"}, and signed with the shared secret

Response

200

codeinteger
messagestring

Example response

{
  "data": {
    "journeyStatus": "SIGN_AGREEMENT",
    "selection": {
      "confirmedAmount": 1903,
      "maxAmount": 1903
    },
    "journeyTracker": [
      {
        "status": "SIGN_AGREEMENT",
        "timestamp": "2025-01-01T00:00:00Z"
      }
    ],
    "userId": "654cc036cf65074f442ff581",
    "productType": "lamf",
    "assetType": "MUTUALFUND",
    "lender": "bajaj_finserv",
    "appliedOffer": {
      "offerCode": "SCABC",
      "offerId": "213234jd",
      "expiryDate": "2025-02-01T00:00:00Z",
      "discountAmount": 3422,
      "applicableOn": "PROCESSING_FEE",
      "discountType": "ABSOLUTE",
      "status": "FROZEN",
      "autoApply": true,
      "recommended": true,
      "applicableAmountRangeMin": 2
    }
  },
  "message": "SUCCESS"
}