# List Loan Products with basic details

`GET /lokta-lms/api/v1/loanproducts/basic-details`

Lists Loan Products with basic details to be listed

## Responses
- `default`: default response

## Response fields
- `currency` (CurrencyData)
- `description` (string)
- `id` (integer)
- `name` (string)
- `productType` (string)
- `shortName` (string)

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

## Example response
```json
[
  {
    "currency": {},
    "description": "string",
    "id": 1,
    "name": "string"
  }
]
```

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