# node_swagger_api

NodeSwaggerApi - JavaScript client for node_swagger_api
Supreme Pay  with Swagger
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 1.9.4
- Package version: 1.9.4
- Build package: io.swagger.codegen.languages.JavascriptClientCodegen

## Installation

### For [Node.js](https://nodejs.org/)

#### npm

To publish the library as a [npm](https://www.npmjs.com/),
please follow the procedure in ["Publishing npm packages"](https://docs.npmjs.com/getting-started/publishing-npm-packages).

Then install it via:

```shell
npm install node_swagger_api --save
```

##### Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing 
into the directory containing `package.json` (and this README). Let's call this `JAVASCRIPT_CLIENT_DIR`. Then run:

```shell
npm install
```

Next, [link](https://docs.npmjs.com/cli/link) it globally in npm with the following, also from `JAVASCRIPT_CLIENT_DIR`:

```shell
npm link
```

Finally, switch to the directory you want to use your node_swagger_api from, and run:

```shell
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
```

You should now be able to `require('node_swagger_api')` in javascript files from the directory you ran the last 
command above from.

#### git
#
If the library is hosted at a git repository, e.g.
https://github.com/YOUR_USERNAME/node_swagger_api
then install it via:

```shell
    npm install YOUR_USERNAME/node_swagger_api --save
```

### For browser

The library also works in the browser environment via npm and [browserify](http://browserify.org/). After following
the above steps with Node.js and installing browserify with `npm install -g browserify`,
perform the following (assuming *main.js* is your entry file, that's to say your javascript file where you actually 
use this library):

```shell
browserify main.js > bundle.js
```

Then include *bundle.js* in the HTML pages.

### Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error:
Cannot resolve module", most certainly you should disable AMD loader. Add/merge
the following section to your webpack config:

```javascript
module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}
```

## Getting Started

Please follow the [installation](#installation) instruction and execute the following JS code:

```javascript
var NodeSwaggerApi = require('node_swagger_api');

var defaultClient = NodeSwaggerApi.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['authorization'] = "Token"

var api = new NodeSwaggerApi.AccountTypeApi()

var details = new NodeSwaggerApi.PreferredAccountType(); // {PreferredAccountType} account types details


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createType(details, callback);

```

## Documentation for API Endpoints

All URIs are relative to *https://api.supremepay.lk:3011/api/admin*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*NodeSwaggerApi.AccountTypeApi* | [**createType**](docs/AccountTypeApi.md#createType) | **POST** /bank/account/type | 
*NodeSwaggerApi.AccountTypeApi* | [**createTypeImage**](docs/AccountTypeApi.md#createTypeImage) | **POST** /bank/account/type/image | 
*NodeSwaggerApi.AccountTypeApi* | [**deleteAccountTypes**](docs/AccountTypeApi.md#deleteAccountTypes) | **DELETE** /bank/account/type/{id} | 
*NodeSwaggerApi.AccountTypeApi* | [**getAccountTypes**](docs/AccountTypeApi.md#getAccountTypes) | **GET** /bank/account/type | 
*NodeSwaggerApi.AccountTypeApi* | [**updateType**](docs/AccountTypeApi.md#updateType) | **PUT** /bank/account/type | 
*NodeSwaggerApi.AdminAccountApi* | [**callDelete**](docs/AdminAccountApi.md#callDelete) | **DELETE** /admin/accounts/{accountid} | 
*NodeSwaggerApi.AdminAccountApi* | [**list**](docs/AdminAccountApi.md#list) | **GET** /admin/accounts/list | 
*NodeSwaggerApi.AdminAccountApi* | [**resetPassword**](docs/AdminAccountApi.md#resetPassword) | **PUT** /admin/accounts/password/reset/{id} | 
*NodeSwaggerApi.AdminAccountApi* | [**update**](docs/AdminAccountApi.md#update) | **PUT** /admin/accounts | 
*NodeSwaggerApi.AdminAccountApi* | [**updateAvatar**](docs/AdminAccountApi.md#updateAvatar) | **PUT** /admin/accounts/avatar | 
*NodeSwaggerApi.AdminAccountApi* | [**updatePassword**](docs/AdminAccountApi.md#updatePassword) | **PUT** /admin/accounts/password | 
*NodeSwaggerApi.AdminauthApi* | [**login**](docs/AdminauthApi.md#login) | **POST** /admin/auth/login | 
*NodeSwaggerApi.AdminauthApi* | [**register**](docs/AdminauthApi.md#register) | **POST** /admin/auth/register | 
*NodeSwaggerApi.AdminauthApi* | [**registerAdmin**](docs/AdminauthApi.md#registerAdmin) | **POST** /admin/auth/register/admin | 
*NodeSwaggerApi.CompanyApi* | [**deleteContact**](docs/CompanyApi.md#deleteContact) | **DELETE** /admin/company/profile/contacts/{id} | 
*NodeSwaggerApi.CompanyApi* | [**deleteImage**](docs/CompanyApi.md#deleteImage) | **DELETE** /admin/company/profile/images/{id} | 
*NodeSwaggerApi.CompanyApi* | [**updateImage**](docs/CompanyApi.md#updateImage) | **PUT** /admin/company/profile/images | 
*NodeSwaggerApi.CompanyApi* | [**updateProfile**](docs/CompanyApi.md#updateProfile) | **POST** /admin/company/profile | 
*NodeSwaggerApi.CompanyApi* | [**viewProfile**](docs/CompanyApi.md#viewProfile) | **GET** /admin/company/profile | 
*NodeSwaggerApi.CountryCodeApi* | [**availableCountries**](docs/CountryCodeApi.md#availableCountries) | **GET** /country | 
*NodeSwaggerApi.CountryCodeApi* | [**createCountryCode**](docs/CountryCodeApi.md#createCountryCode) | **POST** /country | 
*NodeSwaggerApi.CountryCodeApi* | [**deleteCode**](docs/CountryCodeApi.md#deleteCode) | **DELETE** /country/{id} | 
*NodeSwaggerApi.CountryCodeApi* | [**updateCountryCode**](docs/CountryCodeApi.md#updateCountryCode) | **PUT** /country | 
*NodeSwaggerApi.DashboardApi* | [**getAdminActivites**](docs/DashboardApi.md#getAdminActivites) | **GET** /dashboard/users/admin/activities | 
*NodeSwaggerApi.DashboardApi* | [**getBorrowersUsers**](docs/DashboardApi.md#getBorrowersUsers) | **GET** /dashboard/users/borrowers/stats | 
*NodeSwaggerApi.DashboardApi* | [**getBorrowersUsersCount**](docs/DashboardApi.md#getBorrowersUsersCount) | **GET** /dashboard/users/borrowers/stats/count | 
*NodeSwaggerApi.DashboardApi* | [**getLoanCount**](docs/DashboardApi.md#getLoanCount) | **GET** /dashboard/loans/stats | 
*NodeSwaggerApi.DashboardApi* | [**getLoanPaymentsHistory**](docs/DashboardApi.md#getLoanPaymentsHistory) | **GET** /dashboard/payments/history | 
*NodeSwaggerApi.DashboardApi* | [**getRegisterdUsersCount**](docs/DashboardApi.md#getRegisterdUsersCount) | **GET** /dashboard/users/stats/count | 
*NodeSwaggerApi.DashboardApi* | [**getRegisteredUsers**](docs/DashboardApi.md#getRegisteredUsers) | **GET** /dashboard/users/stats/test | 
*NodeSwaggerApi.DashboardApi* | [**getRegisteredUsersList**](docs/DashboardApi.md#getRegisteredUsersList) | **GET** /dashboard/users/stats | 
*NodeSwaggerApi.DashboardApi* | [**getUsersActivities**](docs/DashboardApi.md#getUsersActivities) | **GET** /dashboard/users/activities | 
*NodeSwaggerApi.DashboardApi* | [**getUsersLoginHistory**](docs/DashboardApi.md#getUsersLoginHistory) | **GET** /dashboard/users/login/history | 
*NodeSwaggerApi.DocumentChargeApi* | [**deleteDocumentCharge**](docs/DocumentChargeApi.md#deleteDocumentCharge) | **DELETE** /loans/documents/charges/{id} | 
*NodeSwaggerApi.DocumentChargeApi* | [**getDocumentChargeDetails**](docs/DocumentChargeApi.md#getDocumentChargeDetails) | **GET** /loans/documents/charge | 
*NodeSwaggerApi.DocumentChargeApi* | [**getDocumentChargeDetailsById**](docs/DocumentChargeApi.md#getDocumentChargeDetailsById) | **GET** /loans/documents/charges/{id} | 
*NodeSwaggerApi.DocumentChargeApi* | [**saveDocumentCharge**](docs/DocumentChargeApi.md#saveDocumentCharge) | **POST** /loans/documents/charges | 
*NodeSwaggerApi.DocumentChargeApi* | [**updateDocumentCharge**](docs/DocumentChargeApi.md#updateDocumentCharge) | **PUT** /loans/documents/charges | 
*NodeSwaggerApi.DocumentChargeHistoryApi* | [**getDocumentChargeHistory**](docs/DocumentChargeHistoryApi.md#getDocumentChargeHistory) | **GET** /loans/documents/history | 
*NodeSwaggerApi.DocumentChargeHistoryApi* | [**getDocumentChargeHistoryById**](docs/DocumentChargeHistoryApi.md#getDocumentChargeHistoryById) | **GET** /loans/documents/history/{id} | 
*NodeSwaggerApi.EmploymentApi* | [**getEmploymentDetailAdmin**](docs/EmploymentApi.md#getEmploymentDetailAdmin) | **POST** /employment/details | 
*NodeSwaggerApi.LoansApi* | [**addAdditionalCharges**](docs/LoansApi.md#addAdditionalCharges) | **POST** /loans/process/charges/additionals | 
*NodeSwaggerApi.LoansApi* | [**createLoanPayment**](docs/LoansApi.md#createLoanPayment) | **POST** /loans/payments | 
*NodeSwaggerApi.LoansApi* | [**deleteAdditionalCharges**](docs/LoansApi.md#deleteAdditionalCharges) | **DELETE** /loans/process/charges/additionals/{id} | 
*NodeSwaggerApi.LoansApi* | [**deleteKycReference**](docs/LoansApi.md#deleteKycReference) | **DELETE** /loans/process/kyc/{id} | 
*NodeSwaggerApi.LoansApi* | [**deleteLoanProfile**](docs/LoansApi.md#deleteLoanProfile) | **DELETE** /loans/profile/{id} | 
*NodeSwaggerApi.LoansApi* | [**deleteLoanScheme**](docs/LoansApi.md#deleteLoanScheme) | **DELETE** /loans/schemes/{id} | 
*NodeSwaggerApi.LoansApi* | [**deleteRequestedLoan**](docs/LoansApi.md#deleteRequestedLoan) | **DELETE** /loans/process/{id} | 
*NodeSwaggerApi.LoansApi* | [**getAdditionalChargesbyLoanId**](docs/LoansApi.md#getAdditionalChargesbyLoanId) | **GET** /loans/process/charges/additionals/{id} | 
*NodeSwaggerApi.LoansApi* | [**getKycReferenceByUserId**](docs/LoansApi.md#getKycReferenceByUserId) | **GET** /loans/process/users/kyc/{id} | 
*NodeSwaggerApi.LoansApi* | [**getKycReferencesByLoanId**](docs/LoansApi.md#getKycReferencesByLoanId) | **GET** /loans/process/kyc/{id} | 
*NodeSwaggerApi.LoansApi* | [**getLaonPayment**](docs/LoansApi.md#getLaonPayment) | **GET** /loans/payments | 
*NodeSwaggerApi.LoansApi* | [**getLoanProfileDetails**](docs/LoansApi.md#getLoanProfileDetails) | **GET** /loans/profile | 
*NodeSwaggerApi.LoansApi* | [**getLoanProfileDetailsById**](docs/LoansApi.md#getLoanProfileDetailsById) | **GET** /loans/profile/{id} | 
*NodeSwaggerApi.LoansApi* | [**getLoanSchemeById**](docs/LoansApi.md#getLoanSchemeById) | **GET** /loans/schemes/{id} | 
*NodeSwaggerApi.LoansApi* | [**getRequestedLoanById**](docs/LoansApi.md#getRequestedLoanById) | **GET** /loans/process/{id} | 
*NodeSwaggerApi.LoansApi* | [**getRequestedLoanDetails**](docs/LoansApi.md#getRequestedLoanDetails) | **GET** /loans/process | 
*NodeSwaggerApi.LoansApi* | [**getRequestedLoanUsers**](docs/LoansApi.md#getRequestedLoanUsers) | **GET** /loans/process/users | 
*NodeSwaggerApi.LoansApi* | [**getUserByLoanId**](docs/LoansApi.md#getUserByLoanId) | **GET** /loans/process/users/{id} | 
*NodeSwaggerApi.LoansApi* | [**getUserLoanScheme**](docs/LoansApi.md#getUserLoanScheme) | **GET** /loans/schemes | 
*NodeSwaggerApi.LoansApi* | [**getUsersOtherLoansbyId**](docs/LoansApi.md#getUsersOtherLoansbyId) | **GET** /loans/process/users/{id}/other/loans | 
*NodeSwaggerApi.LoansApi* | [**saveLoanScheme**](docs/LoansApi.md#saveLoanScheme) | **POST** /loans/schemes | 
*NodeSwaggerApi.LoansApi* | [**setDefaultLoanScheme**](docs/LoansApi.md#setDefaultLoanScheme) | **PUT** /loans/schemes/default | 
*NodeSwaggerApi.LoansApi* | [**updateAdditionalCharges**](docs/LoansApi.md#updateAdditionalCharges) | **PUT** /loans/process/charges/additionals | 
*NodeSwaggerApi.LoansApi* | [**updateKycReferenceStatus**](docs/LoansApi.md#updateKycReferenceStatus) | **PUT** /loans/process/status/kyc | 
*NodeSwaggerApi.LoansApi* | [**updateLoanScheme**](docs/LoansApi.md#updateLoanScheme) | **PUT** /loans/schemes | 
*NodeSwaggerApi.LoansApi* | [**updateLoanStatus**](docs/LoansApi.md#updateLoanStatus) | **PUT** /loans/process/status | 
*NodeSwaggerApi.LoansApi* | [**updateRequestedLoan**](docs/LoansApi.md#updateRequestedLoan) | **PUT** /loans/process | 
*NodeSwaggerApi.LoansApi* | [**updateloanProfile**](docs/LoansApi.md#updateloanProfile) | **PUT** /loans/profile | 
*NodeSwaggerApi.MerchantProfileApi* | [**deleteMerchant**](docs/MerchantProfileApi.md#deleteMerchant) | **DELETE** /admin/merchants/{id} | 
*NodeSwaggerApi.MerchantProfileApi* | [**getMerchantDetailsById**](docs/MerchantProfileApi.md#getMerchantDetailsById) | **GET** /admin/merchants/{id} | 
*NodeSwaggerApi.MerchantProfileApi* | [**getMerchantsDetails**](docs/MerchantProfileApi.md#getMerchantsDetails) | **GET** /admin/merchants | 
*NodeSwaggerApi.MerchantProfileApi* | [**saveMerchant**](docs/MerchantProfileApi.md#saveMerchant) | **POST** /admin/merchants | 
*NodeSwaggerApi.MerchantProfileApi* | [**updateMerchant**](docs/MerchantProfileApi.md#updateMerchant) | **PUT** /admin/merchants | 
*NodeSwaggerApi.MerchantProfileApi* | [**updateMerchantImage**](docs/MerchantProfileApi.md#updateMerchantImage) | **PUT** /admin/merchants/image | 
*NodeSwaggerApi.NotificationsApi* | [**sendNotifications**](docs/NotificationsApi.md#sendNotifications) | **POST** /notifications/send | 
*NodeSwaggerApi.PayeeCategoryApi* | [**availableCategories**](docs/PayeeCategoryApi.md#availableCategories) | **GET** /paying/categories | 
*NodeSwaggerApi.PayeeCategoryApi* | [**createPayingCateogory**](docs/PayeeCategoryApi.md#createPayingCateogory) | **POST** /paying/categories | 
*NodeSwaggerApi.PayeeCategoryApi* | [**createPayingCateogoryImage**](docs/PayeeCategoryApi.md#createPayingCateogoryImage) | **POST** /paying/categories/image | 
*NodeSwaggerApi.PayeeCategoryApi* | [**deletePayingCategory**](docs/PayeeCategoryApi.md#deletePayingCategory) | **DELETE** /paying/categories/{id} | 
*NodeSwaggerApi.PayeeCategoryApi* | [**updatePayingCateogory**](docs/PayeeCategoryApi.md#updatePayingCateogory) | **PUT** /paying/categories | 
*NodeSwaggerApi.PromotionApi* | [**createPromotion**](docs/PromotionApi.md#createPromotion) | **POST** /promotion/create | 
*NodeSwaggerApi.PromotionApi* | [**createPromotionImage**](docs/PromotionApi.md#createPromotionImage) | **PUT** /promotion/images | 
*NodeSwaggerApi.PromotionApi* | [**deletePromotion**](docs/PromotionApi.md#deletePromotion) | **DELETE** /promotion/{promo_code} | 
*NodeSwaggerApi.PromotionApi* | [**deletePromotionImage**](docs/PromotionApi.md#deletePromotionImage) | **POST** /promotion/images/remove | 
*NodeSwaggerApi.PromotionApi* | [**getPromotionByPromoCode**](docs/PromotionApi.md#getPromotionByPromoCode) | **GET** /promotion/bypromocode/{promo_code} | 
*NodeSwaggerApi.PromotionApi* | [**getPromotions**](docs/PromotionApi.md#getPromotions) | **GET** /promotion/allpromotion | 
*NodeSwaggerApi.PromotionApi* | [**updatePromotion**](docs/PromotionApi.md#updatePromotion) | **PUT** /promotion | 
*NodeSwaggerApi.SearchApi* | [**searchUsers**](docs/SearchApi.md#searchUsers) | **GET** /search/users | 
*NodeSwaggerApi.ServiceProviderApi* | [**createServiceProvider**](docs/ServiceProviderApi.md#createServiceProvider) | **POST** /service/providers | 
*NodeSwaggerApi.ServiceProviderApi* | [**deleteServiceProvider**](docs/ServiceProviderApi.md#deleteServiceProvider) | **DELETE** /service/providers/{id} | 
*NodeSwaggerApi.ServiceProviderApi* | [**getServiceProviders**](docs/ServiceProviderApi.md#getServiceProviders) | **GET** /service/providers | 
*NodeSwaggerApi.ServiceProviderApi* | [**serviceProviderImage**](docs/ServiceProviderApi.md#serviceProviderImage) | **POST** /service/providers/image | 
*NodeSwaggerApi.ServiceProviderApi* | [**updateServiceProvider**](docs/ServiceProviderApi.md#updateServiceProvider) | **PUT** /service/providers | 
*NodeSwaggerApi.TemplatesApi* | [**getTemplates**](docs/TemplatesApi.md#getTemplates) | **GET** /admin/templates | 
*NodeSwaggerApi.TemplatesApi* | [**getTemplatesCategories**](docs/TemplatesApi.md#getTemplatesCategories) | **GET** /admin/templates/categories | 
*NodeSwaggerApi.VersionApi* | [**checkVersion**](docs/VersionApi.md#checkVersion) | **POST** /version/check | 
*NodeSwaggerApi.VersionApi* | [**createVersion**](docs/VersionApi.md#createVersion) | **POST** /version | 
*NodeSwaggerApi.VersionApi* | [**deleteVersion**](docs/VersionApi.md#deleteVersion) | **DELETE** /version/{id} | 
*NodeSwaggerApi.VersionApi* | [**getVersions**](docs/VersionApi.md#getVersions) | **GET** /version | 


## Documentation for Models

 - [NodeSwaggerApi.Admin](docs/Admin.md)
 - [NodeSwaggerApi.AdminHistory](docs/AdminHistory.md)
 - [NodeSwaggerApi.AdminPassword](docs/AdminPassword.md)
 - [NodeSwaggerApi.AvatarSuccess](docs/AvatarSuccess.md)
 - [NodeSwaggerApi.BankAccount](docs/BankAccount.md)
 - [NodeSwaggerApi.BankProfile](docs/BankProfile.md)
 - [NodeSwaggerApi.CardAccount](docs/CardAccount.md)
 - [NodeSwaggerApi.CardAddress](docs/CardAddress.md)
 - [NodeSwaggerApi.CardAddressResponse](docs/CardAddressResponse.md)
 - [NodeSwaggerApi.CommonError](docs/CommonError.md)
 - [NodeSwaggerApi.CommonSuccess](docs/CommonSuccess.md)
 - [NodeSwaggerApi.CompanyProfile](docs/CompanyProfile.md)
 - [NodeSwaggerApi.CompanyProfileContacts](docs/CompanyProfileContacts.md)
 - [NodeSwaggerApi.CompanyProfileImages](docs/CompanyProfileImages.md)
 - [NodeSwaggerApi.CountryCode](docs/CountryCode.md)
 - [NodeSwaggerApi.CreditScore](docs/CreditScore.md)
 - [NodeSwaggerApi.DashboardAccount](docs/DashboardAccount.md)
 - [NodeSwaggerApi.DocumentCharge](docs/DocumentCharge.md)
 - [NodeSwaggerApi.DocumentChargeHistory](docs/DocumentChargeHistory.md)
 - [NodeSwaggerApi.EmpInformation](docs/EmpInformation.md)
 - [NodeSwaggerApi.EmpInformationReferences](docs/EmpInformationReferences.md)
 - [NodeSwaggerApi.GetVersion](docs/GetVersion.md)
 - [NodeSwaggerApi.GetVersionResult](docs/GetVersionResult.md)
 - [NodeSwaggerApi.HistoryUser](docs/HistoryUser.md)
 - [NodeSwaggerApi.IPGProfile](docs/IPGProfile.md)
 - [NodeSwaggerApi.InstallmentCalculate](docs/InstallmentCalculate.md)
 - [NodeSwaggerApi.InstallmentDetails](docs/InstallmentDetails.md)
 - [NodeSwaggerApi.JPAccount](docs/JPAccount.md)
 - [NodeSwaggerApi.JPBank](docs/JPBank.md)
 - [NodeSwaggerApi.JPDeviceSignature](docs/JPDeviceSignature.md)
 - [NodeSwaggerApi.JPUser](docs/JPUser.md)
 - [NodeSwaggerApi.KycReference](docs/KycReference.md)
 - [NodeSwaggerApi.Language](docs/Language.md)
 - [NodeSwaggerApi.LankaClearChallenge](docs/LankaClearChallenge.md)
 - [NodeSwaggerApi.LateLoanTemp](docs/LateLoanTemp.md)
 - [NodeSwaggerApi.LoanAdditionalCharges](docs/LoanAdditionalCharges.md)
 - [NodeSwaggerApi.LoanDashboardCard](docs/LoanDashboardCard.md)
 - [NodeSwaggerApi.LoanInstallment](docs/LoanInstallment.md)
 - [NodeSwaggerApi.LoanPayment](docs/LoanPayment.md)
 - [NodeSwaggerApi.LoanPaymentWithLoan](docs/LoanPaymentWithLoan.md)
 - [NodeSwaggerApi.LoanPaymentsHistory](docs/LoanPaymentsHistory.md)
 - [NodeSwaggerApi.LoanProfile](docs/LoanProfile.md)
 - [NodeSwaggerApi.LoanScheme](docs/LoanScheme.md)
 - [NodeSwaggerApi.LoanSchemeAvailableTerms](docs/LoanSchemeAvailableTerms.md)
 - [NodeSwaggerApi.LoanSummary](docs/LoanSummary.md)
 - [NodeSwaggerApi.LoginHistory](docs/LoginHistory.md)
 - [NodeSwaggerApi.MWalletProfile](docs/MWalletProfile.md)
 - [NodeSwaggerApi.MerchantProfile](docs/MerchantProfile.md)
 - [NodeSwaggerApi.MessageTemplate](docs/MessageTemplate.md)
 - [NodeSwaggerApi.MessageTemplateCategory](docs/MessageTemplateCategory.md)
 - [NodeSwaggerApi.Notifications](docs/Notifications.md)
 - [NodeSwaggerApi.OtpCheck](docs/OtpCheck.md)
 - [NodeSwaggerApi.OtpRequest](docs/OtpRequest.md)
 - [NodeSwaggerApi.OverLoanTemp](docs/OverLoanTemp.md)
 - [NodeSwaggerApi.Payee](docs/Payee.md)
 - [NodeSwaggerApi.PayeeCategory](docs/PayeeCategory.md)
 - [NodeSwaggerApi.PayeeResponse](docs/PayeeResponse.md)
 - [NodeSwaggerApi.PayeeWithImage](docs/PayeeWithImage.md)
 - [NodeSwaggerApi.PreferredAccountType](docs/PreferredAccountType.md)
 - [NodeSwaggerApi.Preloan](docs/Preloan.md)
 - [NodeSwaggerApi.PreloanRequset](docs/PreloanRequset.md)
 - [NodeSwaggerApi.PrimaryAccount](docs/PrimaryAccount.md)
 - [NodeSwaggerApi.PromoImageDelete](docs/PromoImageDelete.md)
 - [NodeSwaggerApi.Promotion](docs/Promotion.md)
 - [NodeSwaggerApi.PromotionImages](docs/PromotionImages.md)
 - [NodeSwaggerApi.RecoveryPassword](docs/RecoveryPassword.md)
 - [NodeSwaggerApi.ResetPassword](docs/ResetPassword.md)
 - [NodeSwaggerApi.ServiceProvider](docs/ServiceProvider.md)
 - [NodeSwaggerApi.SmsVerification](docs/SmsVerification.md)
 - [NodeSwaggerApi.Transaction](docs/Transaction.md)
 - [NodeSwaggerApi.UnsubscribeToken](docs/UnsubscribeToken.md)
 - [NodeSwaggerApi.UpdateGender](docs/UpdateGender.md)
 - [NodeSwaggerApi.UpdateMarital](docs/UpdateMarital.md)
 - [NodeSwaggerApi.UserAddress](docs/UserAddress.md)
 - [NodeSwaggerApi.UserHistory](docs/UserHistory.md)
 - [NodeSwaggerApi.UserLedger](docs/UserLedger.md)
 - [NodeSwaggerApi.UserLogin](docs/UserLogin.md)
 - [NodeSwaggerApi.UserPassword](docs/UserPassword.md)
 - [NodeSwaggerApi.UserProfile](docs/UserProfile.md)
 - [NodeSwaggerApi.UserToken](docs/UserToken.md)
 - [NodeSwaggerApi.VerifyAccount](docs/VerifyAccount.md)
 - [NodeSwaggerApi.Version](docs/Version.md)
 - [NodeSwaggerApi.VersionCheck](docs/VersionCheck.md)
 - [NodeSwaggerApi.VersionDeleteResult](docs/VersionDeleteResult.md)


## Documentation for Authorization


### api_key

- **Type**: API key
- **API key parameter name**: authorization
- **Location**: HTTP header

