# Retrieve Loan Approval Template

`GET /lokta-lms/api/v1/loans/{loanId}/template`

## Parameters
- `loanId` (path, integer, required): loanId
- `templateType` (query, string): templateType

## Responses
- `200`: OK

## Response fields
- `approvalAmount` (number)
- `approvalDate` (string)
- `currency` (GetLoanCurrency)
- `netDisbursalAmount` (number)

## Example request (cURL)
```bash
curl -X GET \
  'http://localhost:8080/lokta-lms/api/v1/loans/{loanId}/template' \
  -u '{username}:{password}' \
  -H 'Tenant-Identifier: default'
```

## Example response
```json
{
  "approvalAmount": 200,
  "approvalDate": "19 August 2026",
  "currency": {
    "code": "UGX",
    "decimalPlaces": 2,
    "displayLabel": "Uganda Shilling (USh)",
    "displaySymbol": "USh"
  },
  "netDisbursalAmount": 200
}
```

Interactive: https://developer.lokta.ai/reference.html#operation/retrieveApprovalTemplate
