swagger-codegen generate -i <url> -l javascript -c config.json -t ./template/es6/

npm run build

# core_api_v10

CoreApiV10 - JavaScript client for core_api_v10
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: v1.0
- Package version: v1.0
- Build package: io.swagger.codegen.languages.JavascriptClientCodegen
For more information, please visit [https://genesis.vision/](https://genesis.vision/)

## 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 core_api_v10 --save
```

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

```shell
    npm install GIT_USER_ID/GIT_REPO_ID --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):

```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 CoreApiV10 = require('core_api_v10');

var api = new CoreApiV10.AuthApi()

var authorization = "authorization_example"; // {String} JWT access token

var opts = { 
  'model': new CoreApiV10.TwoFactorAuthenticatorConfirm() // {TwoFactorAuthenticatorConfirm} 
};
api.v10Auth2faConfirmPost(authorization, opts).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});


```

## Documentation for API Endpoints

All URIs are relative to *https://localhost*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*CoreApiV10.AuthApi* | [**v10Auth2faConfirmPost**](docs/AuthApi.md#v10Auth2faConfirmPost) | **POST** /v1.0/auth/2fa/confirm | 2FA confirm
*CoreApiV10.AuthApi* | [**v10Auth2faCreatePost**](docs/AuthApi.md#v10Auth2faCreatePost) | **POST** /v1.0/auth/2fa/create | 2FA create
*CoreApiV10.AuthApi* | [**v10Auth2faDisablePost**](docs/AuthApi.md#v10Auth2faDisablePost) | **POST** /v1.0/auth/2fa/disable | 2FA disable
*CoreApiV10.AuthApi* | [**v10Auth2faGet**](docs/AuthApi.md#v10Auth2faGet) | **GET** /v1.0/auth/2fa | 2FA status
*CoreApiV10.AuthApi* | [**v10Auth2faRecoverycodesNewPost**](docs/AuthApi.md#v10Auth2faRecoverycodesNewPost) | **POST** /v1.0/auth/2fa/recoverycodes/new | 2FA generate new recovery codes
*CoreApiV10.AuthApi* | [**v10Auth2faRecoverycodesPost**](docs/AuthApi.md#v10Auth2faRecoverycodesPost) | **POST** /v1.0/auth/2fa/recoverycodes | 2FA recovery codes
*CoreApiV10.AuthApi* | [**v10AuthPasswordChangePost**](docs/AuthApi.md#v10AuthPasswordChangePost) | **POST** /v1.0/auth/password/change | Change password
*CoreApiV10.AuthApi* | [**v10AuthPasswordForgotInvestorPost**](docs/AuthApi.md#v10AuthPasswordForgotInvestorPost) | **POST** /v1.0/auth/password/forgot/investor | Forgot password for investor
*CoreApiV10.AuthApi* | [**v10AuthPasswordForgotManagerPost**](docs/AuthApi.md#v10AuthPasswordForgotManagerPost) | **POST** /v1.0/auth/password/forgot/manager | Forgot password for manager
*CoreApiV10.AuthApi* | [**v10AuthPasswordResetPost**](docs/AuthApi.md#v10AuthPasswordResetPost) | **POST** /v1.0/auth/password/reset | Reset password
*CoreApiV10.AuthApi* | [**v10AuthPhoneCodePost**](docs/AuthApi.md#v10AuthPhoneCodePost) | **POST** /v1.0/auth/phone/code | Get phone number verification code
*CoreApiV10.AuthApi* | [**v10AuthPhoneVerifyPost**](docs/AuthApi.md#v10AuthPhoneVerifyPost) | **POST** /v1.0/auth/phone/verify | Verify phone number
*CoreApiV10.AuthApi* | [**v10AuthResendconfirmationlinkPost**](docs/AuthApi.md#v10AuthResendconfirmationlinkPost) | **POST** /v1.0/auth/resendconfirmationlink | Resend Confirmation Link
*CoreApiV10.AuthApi* | [**v10AuthSigninInvestorPost**](docs/AuthApi.md#v10AuthSigninInvestorPost) | **POST** /v1.0/auth/signin/investor | Authorize
*CoreApiV10.AuthApi* | [**v10AuthSigninManagerPost**](docs/AuthApi.md#v10AuthSigninManagerPost) | **POST** /v1.0/auth/signin/manager | Authorize
*CoreApiV10.AuthApi* | [**v10AuthSignupConfirmPost**](docs/AuthApi.md#v10AuthSignupConfirmPost) | **POST** /v1.0/auth/signup/confirm | Confirm email after registration
*CoreApiV10.AuthApi* | [**v10AuthSignupInvestorPost**](docs/AuthApi.md#v10AuthSignupInvestorPost) | **POST** /v1.0/auth/signup/investor | New investor registration
*CoreApiV10.AuthApi* | [**v10AuthSignupManagerPost**](docs/AuthApi.md#v10AuthSignupManagerPost) | **POST** /v1.0/auth/signup/manager | New manager registration
*CoreApiV10.AuthApi* | [**v10AuthTokenDevicesLogoutPost**](docs/AuthApi.md#v10AuthTokenDevicesLogoutPost) | **POST** /v1.0/auth/token/devices/logout | Logout from another devices
*CoreApiV10.AuthApi* | [**v10AuthTokenUpdatePost**](docs/AuthApi.md#v10AuthTokenUpdatePost) | **POST** /v1.0/auth/token/update | Update auth token
*CoreApiV10.BrokersApi* | [**v10BrokersGet**](docs/BrokersApi.md#v10BrokersGet) | **GET** /v1.0/brokers | Get all trade servers
*CoreApiV10.FileApi* | [**v10FileByIdGet**](docs/FileApi.md#v10FileByIdGet) | **GET** /v1.0/file/{id} | Download file
*CoreApiV10.FileApi* | [**v10FileDocumentUploadPost**](docs/FileApi.md#v10FileDocumentUploadPost) | **POST** /v1.0/file/document/upload | Upload document
*CoreApiV10.FileApi* | [**v10FileUploadPost**](docs/FileApi.md#v10FileUploadPost) | **POST** /v1.0/file/upload | Upload file
*CoreApiV10.FundsApi* | [**v10FundsAssetsGet**](docs/FundsApi.md#v10FundsAssetsGet) | **GET** /v1.0/funds/assets | Get all supported assets for funds
*CoreApiV10.FundsApi* | [**v10FundsByIdAssetsGet**](docs/FundsApi.md#v10FundsByIdAssetsGet) | **GET** /v1.0/funds/{id}/assets | Fund assets info
*CoreApiV10.FundsApi* | [**v10FundsByIdChartsBalanceGet**](docs/FundsApi.md#v10FundsByIdChartsBalanceGet) | **GET** /v1.0/funds/{id}/charts/balance | Fund balance chart
*CoreApiV10.FundsApi* | [**v10FundsByIdChartsProfitGet**](docs/FundsApi.md#v10FundsByIdChartsProfitGet) | **GET** /v1.0/funds/{id}/charts/profit | Fund profit chart
*CoreApiV10.FundsApi* | [**v10FundsByIdFavoriteAddPost**](docs/FundsApi.md#v10FundsByIdFavoriteAddPost) | **POST** /v1.0/funds/{id}/favorite/add | Add to favorites
*CoreApiV10.FundsApi* | [**v10FundsByIdFavoriteRemovePost**](docs/FundsApi.md#v10FundsByIdFavoriteRemovePost) | **POST** /v1.0/funds/{id}/favorite/remove | Remove from favorites
*CoreApiV10.FundsApi* | [**v10FundsByIdGet**](docs/FundsApi.md#v10FundsByIdGet) | **GET** /v1.0/funds/{id} | Funds details
*CoreApiV10.FundsApi* | [**v10FundsGet**](docs/FundsApi.md#v10FundsGet) | **GET** /v1.0/funds | Funds list
*CoreApiV10.FundsApi* | [**v10FundsSetsGet**](docs/FundsApi.md#v10FundsSetsGet) | **GET** /v1.0/funds/sets | Fund sets
*CoreApiV10.InvestorApi* | [**v10InvestorFundsByIdInvestByAmountPost**](docs/InvestorApi.md#v10InvestorFundsByIdInvestByAmountPost) | **POST** /v1.0/investor/funds/{id}/invest/{amount} | Investing into the fund.  Invest in GVT if currency is empty
*CoreApiV10.InvestorApi* | [**v10InvestorFundsByIdInvestInfoByCurrencyGet**](docs/InvestorApi.md#v10InvestorFundsByIdInvestInfoByCurrencyGet) | **GET** /v1.0/investor/funds/{id}/invest/info/{currency} | Data for investing into the fund
*CoreApiV10.InvestorApi* | [**v10InvestorFundsByIdRequestsBySkipByTakeGet**](docs/InvestorApi.md#v10InvestorFundsByIdRequestsBySkipByTakeGet) | **GET** /v1.0/investor/funds/{id}/requests/{skip}/{take} | Get program/fund requests
*CoreApiV10.InvestorApi* | [**v10InvestorFundsByIdWithdrawByPercentPost**](docs/InvestorApi.md#v10InvestorFundsByIdWithdrawByPercentPost) | **POST** /v1.0/investor/funds/{id}/withdraw/{percent} | Withdraw from fund. Percent is % of investor total money.  Withdraw in GVT if currency is empty
*CoreApiV10.InvestorApi* | [**v10InvestorFundsByIdWithdrawInfoByCurrencyGet**](docs/InvestorApi.md#v10InvestorFundsByIdWithdrawInfoByCurrencyGet) | **GET** /v1.0/investor/funds/{id}/withdraw/info/{currency} | Data for withdrawal from fund
*CoreApiV10.InvestorApi* | [**v10InvestorFundsGet**](docs/InvestorApi.md#v10InvestorFundsGet) | **GET** /v1.0/investor/funds | Dashboard funds list
*CoreApiV10.InvestorApi* | [**v10InvestorGet**](docs/InvestorApi.md#v10InvestorGet) | **GET** /v1.0/investor | Summary dashboard info
*CoreApiV10.InvestorApi* | [**v10InvestorPortfolioChartGet**](docs/InvestorApi.md#v10InvestorPortfolioChartGet) | **GET** /v1.0/investor/portfolio/chart | Portfolio charts
*CoreApiV10.InvestorApi* | [**v10InvestorPortfolioEventsGet**](docs/InvestorApi.md#v10InvestorPortfolioEventsGet) | **GET** /v1.0/investor/portfolio/events | Portfolio events
*CoreApiV10.InvestorApi* | [**v10InvestorProgramsByIdInvestByAmountPost**](docs/InvestorApi.md#v10InvestorProgramsByIdInvestByAmountPost) | **POST** /v1.0/investor/programs/{id}/invest/{amount} | Investing into the program.  Invest in GVT if currency is empty
*CoreApiV10.InvestorApi* | [**v10InvestorProgramsByIdInvestInfoByCurrencyGet**](docs/InvestorApi.md#v10InvestorProgramsByIdInvestInfoByCurrencyGet) | **GET** /v1.0/investor/programs/{id}/invest/info/{currency} | Data for investing into the program
*CoreApiV10.InvestorApi* | [**v10InvestorProgramsByIdReinvestOffPost**](docs/InvestorApi.md#v10InvestorProgramsByIdReinvestOffPost) | **POST** /v1.0/investor/programs/{id}/reinvest/off | Disable reinvesting
*CoreApiV10.InvestorApi* | [**v10InvestorProgramsByIdReinvestOnPost**](docs/InvestorApi.md#v10InvestorProgramsByIdReinvestOnPost) | **POST** /v1.0/investor/programs/{id}/reinvest/on | Enable reinvesting
*CoreApiV10.InvestorApi* | [**v10InvestorProgramsByIdRequestsBySkipByTakeGet**](docs/InvestorApi.md#v10InvestorProgramsByIdRequestsBySkipByTakeGet) | **GET** /v1.0/investor/programs/{id}/requests/{skip}/{take} | Get program/fund requests
*CoreApiV10.InvestorApi* | [**v10InvestorProgramsByIdWithdrawByAmountPost**](docs/InvestorApi.md#v10InvestorProgramsByIdWithdrawByAmountPost) | **POST** /v1.0/investor/programs/{id}/withdraw/{amount} | Withdraw from investment program in GVT
*CoreApiV10.InvestorApi* | [**v10InvestorProgramsByIdWithdrawInfoByCurrencyGet**](docs/InvestorApi.md#v10InvestorProgramsByIdWithdrawInfoByCurrencyGet) | **GET** /v1.0/investor/programs/{id}/withdraw/info/{currency} | Data for withdrawal from investment program
*CoreApiV10.InvestorApi* | [**v10InvestorProgramsByIdWithdrawMultiByAmountPost**](docs/InvestorApi.md#v10InvestorProgramsByIdWithdrawMultiByAmountPost) | **POST** /v1.0/investor/programs/{id}/withdraw/multi/{amount} | Withdraw from investment program in program currency
*CoreApiV10.InvestorApi* | [**v10InvestorProgramsGet**](docs/InvestorApi.md#v10InvestorProgramsGet) | **GET** /v1.0/investor/programs | Dashboard program list
*CoreApiV10.InvestorApi* | [**v10InvestorProgramsRequestsByIdCancelPost**](docs/InvestorApi.md#v10InvestorProgramsRequestsByIdCancelPost) | **POST** /v1.0/investor/programs/requests/{id}/cancel | Cancel investment program request
*CoreApiV10.InvestorApi* | [**v10InvestorRequestsBySkipByTakeGet**](docs/InvestorApi.md#v10InvestorRequestsBySkipByTakeGet) | **GET** /v1.0/investor/requests/{skip}/{take} | Get all requests
*CoreApiV10.InvestorApi* | [**v10InvestorSignalsGet**](docs/InvestorApi.md#v10InvestorSignalsGet) | **GET** /v1.0/investor/signals | Dashboard signal providers list
*CoreApiV10.ManagerApi* | [**v10ManagerAssetsGet**](docs/ManagerApi.md#v10ManagerAssetsGet) | **GET** /v1.0/manager/assets | Manager assets list
*CoreApiV10.ManagerApi* | [**v10ManagerByIdDetailsGet**](docs/ManagerApi.md#v10ManagerByIdDetailsGet) | **GET** /v1.0/manager/{id}/details | Manager details
*CoreApiV10.ManagerApi* | [**v10ManagerByIdGet**](docs/ManagerApi.md#v10ManagerByIdGet) | **GET** /v1.0/manager/{id} | Manager profile
*CoreApiV10.ManagerApi* | [**v10ManagerEventsGet**](docs/ManagerApi.md#v10ManagerEventsGet) | **GET** /v1.0/manager/events | Manager events
*CoreApiV10.ManagerApi* | [**v10ManagerFundsByIdAssetsUpdatePost**](docs/ManagerApi.md#v10ManagerFundsByIdAssetsUpdatePost) | **POST** /v1.0/manager/funds/{id}/assets/update | Update fund assets parts
*CoreApiV10.ManagerApi* | [**v10ManagerFundsByIdClosePost**](docs/ManagerApi.md#v10ManagerFundsByIdClosePost) | **POST** /v1.0/manager/funds/{id}/close | Close existing fund
*CoreApiV10.ManagerApi* | [**v10ManagerFundsByIdInvestByAmountPost**](docs/ManagerApi.md#v10ManagerFundsByIdInvestByAmountPost) | **POST** /v1.0/manager/funds/{id}/invest/{amount} | Deposit.  Invest in GVT if currency is empty
*CoreApiV10.ManagerApi* | [**v10ManagerFundsByIdInvestInfoByCurrencyGet**](docs/ManagerApi.md#v10ManagerFundsByIdInvestInfoByCurrencyGet) | **GET** /v1.0/manager/funds/{id}/invest/info/{currency} | Data for investing into the fund
*CoreApiV10.ManagerApi* | [**v10ManagerFundsByIdRequestsBySkipByTakeGet**](docs/ManagerApi.md#v10ManagerFundsByIdRequestsBySkipByTakeGet) | **GET** /v1.0/manager/funds/{id}/requests/{skip}/{take} | Get investment program/fund requests
*CoreApiV10.ManagerApi* | [**v10ManagerFundsByIdUpdatePost**](docs/ManagerApi.md#v10ManagerFundsByIdUpdatePost) | **POST** /v1.0/manager/funds/{id}/update | Update investment program/fund details
*CoreApiV10.ManagerApi* | [**v10ManagerFundsByIdWithdrawByPercentPost**](docs/ManagerApi.md#v10ManagerFundsByIdWithdrawByPercentPost) | **POST** /v1.0/manager/funds/{id}/withdraw/{percent} | Withdraw from fund. Percent is % of manager total money.  Withdraw in GVT if currency is empty
*CoreApiV10.ManagerApi* | [**v10ManagerFundsByIdWithdrawInfoByCurrencyGet**](docs/ManagerApi.md#v10ManagerFundsByIdWithdrawInfoByCurrencyGet) | **GET** /v1.0/manager/funds/{id}/withdraw/info/{currency} | Data for withdrawal from fund
*CoreApiV10.ManagerApi* | [**v10ManagerFundsCreatePost**](docs/ManagerApi.md#v10ManagerFundsCreatePost) | **POST** /v1.0/manager/funds/create | Create fund
*CoreApiV10.ManagerApi* | [**v10ManagerFundsGet**](docs/ManagerApi.md#v10ManagerFundsGet) | **GET** /v1.0/manager/funds | Manager funds
*CoreApiV10.ManagerApi* | [**v10ManagerFundsInvestmentAmountGet**](docs/ManagerApi.md#v10ManagerFundsInvestmentAmountGet) | **GET** /v1.0/manager/funds/investment/amount | Get GVT investment to create fund
*CoreApiV10.ManagerApi* | [**v10ManagerFundsRequestsByIdCancelPost**](docs/ManagerApi.md#v10ManagerFundsRequestsByIdCancelPost) | **POST** /v1.0/manager/funds/requests/{id}/cancel | Cancel investment program/fund request
*CoreApiV10.ManagerApi* | [**v10ManagerGet**](docs/ManagerApi.md#v10ManagerGet) | **GET** /v1.0/manager | Manager dashboard
*CoreApiV10.ManagerApi* | [**v10ManagerPrograms2faConfirmPost**](docs/ManagerApi.md#v10ManagerPrograms2faConfirmPost) | **POST** /v1.0/manager/programs/2fa/confirm | Confirm 2FA for program if required (for brokers like Huobi)
*CoreApiV10.ManagerApi* | [**v10ManagerPrograms2faGetGet**](docs/ManagerApi.md#v10ManagerPrograms2faGetGet) | **GET** /v1.0/manager/programs/2fa/get | Get 2FA for program if needed
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsByIdClosePost**](docs/ManagerApi.md#v10ManagerProgramsByIdClosePost) | **POST** /v1.0/manager/programs/{id}/close | Close existing investment program
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsByIdInvestByAmountPost**](docs/ManagerApi.md#v10ManagerProgramsByIdInvestByAmountPost) | **POST** /v1.0/manager/programs/{id}/invest/{amount} | Deposit  Invest in GVT if currency is empty
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsByIdInvestInfoByCurrencyGet**](docs/ManagerApi.md#v10ManagerProgramsByIdInvestInfoByCurrencyGet) | **GET** /v1.0/manager/programs/{id}/invest/info/{currency} | Data for investing into the program
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsByIdPasswordChangePost**](docs/ManagerApi.md#v10ManagerProgramsByIdPasswordChangePost) | **POST** /v1.0/manager/programs/{id}/password/change | Change program password
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsByIdPeriodClosePost**](docs/ManagerApi.md#v10ManagerProgramsByIdPeriodClosePost) | **POST** /v1.0/manager/programs/{id}/period/close | Close current period
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsByIdRequestsBySkipByTakeGet**](docs/ManagerApi.md#v10ManagerProgramsByIdRequestsBySkipByTakeGet) | **GET** /v1.0/manager/programs/{id}/requests/{skip}/{take} | Get investment program/fund requests
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsByIdUpdatePost**](docs/ManagerApi.md#v10ManagerProgramsByIdUpdatePost) | **POST** /v1.0/manager/programs/{id}/update | Update investment program/fund details
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsByIdWithdrawByAmountPost**](docs/ManagerApi.md#v10ManagerProgramsByIdWithdrawByAmountPost) | **POST** /v1.0/manager/programs/{id}/withdraw/{amount} | Withdraw from investment program in GVT
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsByIdWithdrawInfoByCurrencyGet**](docs/ManagerApi.md#v10ManagerProgramsByIdWithdrawInfoByCurrencyGet) | **GET** /v1.0/manager/programs/{id}/withdraw/info/{currency} | Data for withdrawal from investment program
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsByIdWithdrawMultiByAmountPost**](docs/ManagerApi.md#v10ManagerProgramsByIdWithdrawMultiByAmountPost) | **POST** /v1.0/manager/programs/{id}/withdraw/multi/{amount} | Withdraw from investment program in program currency
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsCreatePost**](docs/ManagerApi.md#v10ManagerProgramsCreatePost) | **POST** /v1.0/manager/programs/create | Create an investment program
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsGet**](docs/ManagerApi.md#v10ManagerProgramsGet) | **GET** /v1.0/manager/programs | Manager programs
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsInvestmentAmountGet**](docs/ManagerApi.md#v10ManagerProgramsInvestmentAmountGet) | **GET** /v1.0/manager/programs/investment/amount | Get investment amount to create program
*CoreApiV10.ManagerApi* | [**v10ManagerProgramsRequestsByIdCancelPost**](docs/ManagerApi.md#v10ManagerProgramsRequestsByIdCancelPost) | **POST** /v1.0/manager/programs/requests/{id}/cancel | Cancel investment program/fund request
*CoreApiV10.ManagerApi* | [**v10ManagerRequestsBySkipByTakeGet**](docs/ManagerApi.md#v10ManagerRequestsBySkipByTakeGet) | **GET** /v1.0/manager/requests/{skip}/{take} | Get all requests
*CoreApiV10.ManagerApi* | [**v10ManagerSignalCreatePost**](docs/ManagerApi.md#v10ManagerSignalCreatePost) | **POST** /v1.0/manager/signal/create | Make manager&#39;s program signal provider
*CoreApiV10.ManagerApi* | [**v10ManagerSignalEditPost**](docs/ManagerApi.md#v10ManagerSignalEditPost) | **POST** /v1.0/manager/signal/edit | Make manager&#39;s program signal provider
*CoreApiV10.NotificationsApi* | [**v10NotificationsByIdReadPost**](docs/NotificationsApi.md#v10NotificationsByIdReadPost) | **POST** /v1.0/notifications/{id}/read | Read notification
*CoreApiV10.NotificationsApi* | [**v10NotificationsGet**](docs/NotificationsApi.md#v10NotificationsGet) | **GET** /v1.0/notifications | User notifications
*CoreApiV10.NotificationsApi* | [**v10NotificationsNewGet**](docs/NotificationsApi.md#v10NotificationsNewGet) | **GET** /v1.0/notifications/new | Unread notifications count
*CoreApiV10.NotificationsApi* | [**v10NotificationsSettingsAddPost**](docs/NotificationsApi.md#v10NotificationsSettingsAddPost) | **POST** /v1.0/notifications/settings/add | Add new setting
*CoreApiV10.NotificationsApi* | [**v10NotificationsSettingsByIdByEnablePost**](docs/NotificationsApi.md#v10NotificationsSettingsByIdByEnablePost) | **POST** /v1.0/notifications/settings/{id}/{enable} | Enable/disable setting
*CoreApiV10.NotificationsApi* | [**v10NotificationsSettingsFundsByIdGet**](docs/NotificationsApi.md#v10NotificationsSettingsFundsByIdGet) | **GET** /v1.0/notifications/settings/funds/{id} | User settings for fund
*CoreApiV10.NotificationsApi* | [**v10NotificationsSettingsGet**](docs/NotificationsApi.md#v10NotificationsSettingsGet) | **GET** /v1.0/notifications/settings | User settings
*CoreApiV10.NotificationsApi* | [**v10NotificationsSettingsManagersByIdGet**](docs/NotificationsApi.md#v10NotificationsSettingsManagersByIdGet) | **GET** /v1.0/notifications/settings/managers/{id} | User settings for manager
*CoreApiV10.NotificationsApi* | [**v10NotificationsSettingsProgramsByIdGet**](docs/NotificationsApi.md#v10NotificationsSettingsProgramsByIdGet) | **GET** /v1.0/notifications/settings/programs/{id} | User settings for program
*CoreApiV10.NotificationsApi* | [**v10NotificationsSettingsRemoveByIdPost**](docs/NotificationsApi.md#v10NotificationsSettingsRemoveByIdPost) | **POST** /v1.0/notifications/settings/remove/{id} | Remove setting
*CoreApiV10.PlatformApi* | [**v10PlatformInfoGet**](docs/PlatformApi.md#v10PlatformInfoGet) | **GET** /v1.0/platform/info | Platform info
*CoreApiV10.PlatformApi* | [**v10PlatformLevelsGet**](docs/PlatformApi.md#v10PlatformLevelsGet) | **GET** /v1.0/platform/levels | Investment programs levels
*CoreApiV10.PlatformApi* | [**v10PlatformRiskcontrolGet**](docs/PlatformApi.md#v10PlatformRiskcontrolGet) | **GET** /v1.0/platform/riskcontrol | Platform captcha details.
*CoreApiV10.PlatformApi* | [**v10PlatformStatisticGet**](docs/PlatformApi.md#v10PlatformStatisticGet) | **GET** /v1.0/platform/statistic | Platform statistic
*CoreApiV10.ProfileApi* | [**v10ProfileAvatarRemovePost**](docs/ProfileApi.md#v10ProfileAvatarRemovePost) | **POST** /v1.0/profile/avatar/remove | Remove avatar
*CoreApiV10.ProfileApi* | [**v10ProfileAvatarUpdateByFileIdPost**](docs/ProfileApi.md#v10ProfileAvatarUpdateByFileIdPost) | **POST** /v1.0/profile/avatar/update/{fileId} | Update avatar
*CoreApiV10.ProfileApi* | [**v10ProfileGet**](docs/ProfileApi.md#v10ProfileGet) | **GET** /v1.0/profile | Get full profile
*CoreApiV10.ProfileApi* | [**v10ProfileHeaderGet**](docs/ProfileApi.md#v10ProfileHeaderGet) | **GET** /v1.0/profile/header | Get header profile
*CoreApiV10.ProfileApi* | [**v10ProfilePersonalUpdatePost**](docs/ProfileApi.md#v10ProfilePersonalUpdatePost) | **POST** /v1.0/profile/personal/update | Update user personal details
*CoreApiV10.ProfileApi* | [**v10ProfilePushTokenPost**](docs/ProfileApi.md#v10ProfilePushTokenPost) | **POST** /v1.0/profile/push/token | 
*CoreApiV10.ProfileApi* | [**v10ProfileUpdatePost**](docs/ProfileApi.md#v10ProfileUpdatePost) | **POST** /v1.0/profile/update | Update profile
*CoreApiV10.ProfileApi* | [**v10ProfileVerificationTokenPost**](docs/ProfileApi.md#v10ProfileVerificationTokenPost) | **POST** /v1.0/profile/verification/token | 
*CoreApiV10.ProgramsApi* | [**v10ProgramsByIdChartsBalanceGet**](docs/ProgramsApi.md#v10ProgramsByIdChartsBalanceGet) | **GET** /v1.0/programs/{id}/charts/balance | Program balance chart
*CoreApiV10.ProgramsApi* | [**v10ProgramsByIdChartsProfitGet**](docs/ProgramsApi.md#v10ProgramsByIdChartsProfitGet) | **GET** /v1.0/programs/{id}/charts/profit | Program profit chart
*CoreApiV10.ProgramsApi* | [**v10ProgramsByIdFavoriteAddPost**](docs/ProgramsApi.md#v10ProgramsByIdFavoriteAddPost) | **POST** /v1.0/programs/{id}/favorite/add | Add to favorites
*CoreApiV10.ProgramsApi* | [**v10ProgramsByIdFavoriteRemovePost**](docs/ProgramsApi.md#v10ProgramsByIdFavoriteRemovePost) | **POST** /v1.0/programs/{id}/favorite/remove | Remove from favorites
*CoreApiV10.ProgramsApi* | [**v10ProgramsByIdGet**](docs/ProgramsApi.md#v10ProgramsByIdGet) | **GET** /v1.0/programs/{id} | Program details
*CoreApiV10.ProgramsApi* | [**v10ProgramsByIdPeriodsGet**](docs/ProgramsApi.md#v10ProgramsByIdPeriodsGet) | **GET** /v1.0/programs/{id}/periods | Program periods
*CoreApiV10.ProgramsApi* | [**v10ProgramsByIdTradesGet**](docs/ProgramsApi.md#v10ProgramsByIdTradesGet) | **GET** /v1.0/programs/{id}/trades | Trade history
*CoreApiV10.ProgramsApi* | [**v10ProgramsByIdTradesOpenGet**](docs/ProgramsApi.md#v10ProgramsByIdTradesOpenGet) | **GET** /v1.0/programs/{id}/trades/open | Open positions
*CoreApiV10.ProgramsApi* | [**v10ProgramsGet**](docs/ProgramsApi.md#v10ProgramsGet) | **GET** /v1.0/programs | Programs list
*CoreApiV10.ProgramsApi* | [**v10ProgramsLevelupSummaryGet**](docs/ProgramsApi.md#v10ProgramsLevelupSummaryGet) | **GET** /v1.0/programs/levelup/summary | Level up summary
*CoreApiV10.ProgramsApi* | [**v10ProgramsSetsGet**](docs/ProgramsApi.md#v10ProgramsSetsGet) | **GET** /v1.0/programs/sets | Programs sets
*CoreApiV10.RateApi* | [**v10RateByExchangeByFromByToGet**](docs/RateApi.md#v10RateByExchangeByFromByToGet) | **GET** /v1.0/rate/{exchange}/{from}/{to} | Get rate
*CoreApiV10.RateApi* | [**v10RateByFromByToGet**](docs/RateApi.md#v10RateByFromByToGet) | **GET** /v1.0/rate/{from}/{to} | Get rate
*CoreApiV10.RateApi* | [**v10RateGet**](docs/RateApi.md#v10RateGet) | **GET** /v1.0/rate | Get rates
*CoreApiV10.SearchApi* | [**v10SearchGet**](docs/SearchApi.md#v10SearchGet) | **GET** /v1.0/search | Program / fund / manager search
*CoreApiV10.SignalApi* | [**v10SignalAccountsGet**](docs/SignalApi.md#v10SignalAccountsGet) | **GET** /v1.0/signal/accounts | Get copytrading accounts
*CoreApiV10.SignalApi* | [**v10SignalAttachByIdInfoGet**](docs/SignalApi.md#v10SignalAttachByIdInfoGet) | **GET** /v1.0/signal/attach/{id}/info | Get subscribe to programs signals info
*CoreApiV10.SignalApi* | [**v10SignalAttachByIdPost**](docs/SignalApi.md#v10SignalAttachByIdPost) | **POST** /v1.0/signal/attach/{id} | Subscribe to programs signals
*CoreApiV10.SignalApi* | [**v10SignalByIdUpdatePost**](docs/SignalApi.md#v10SignalByIdUpdatePost) | **POST** /v1.0/signal/{id}/update | Update signal subscription settings
*CoreApiV10.SignalApi* | [**v10SignalDetachByIdPost**](docs/SignalApi.md#v10SignalDetachByIdPost) | **POST** /v1.0/signal/detach/{id} | Unsubscribe from program signals
*CoreApiV10.SignalApi* | [**v10SignalTradesByIdClosePost**](docs/SignalApi.md#v10SignalTradesByIdClosePost) | **POST** /v1.0/signal/trades/{id}/close | Close signal trade
*CoreApiV10.SignalApi* | [**v10SignalTradesGet**](docs/SignalApi.md#v10SignalTradesGet) | **GET** /v1.0/signal/trades | Get investors signals trades history
*CoreApiV10.SignalApi* | [**v10SignalTradesOpenGet**](docs/SignalApi.md#v10SignalTradesOpenGet) | **GET** /v1.0/signal/trades/open | Get investors signals open trades
*CoreApiV10.WalletApi* | [**v10WalletAddressesByCurrencyGet**](docs/WalletApi.md#v10WalletAddressesByCurrencyGet) | **GET** /v1.0/wallet/addresses/{currency} | Get user addresses
*CoreApiV10.WalletApi* | [**v10WalletAddressesGet**](docs/WalletApi.md#v10WalletAddressesGet) | **GET** /v1.0/wallet/addresses | Get user addresses
*CoreApiV10.WalletApi* | [**v10WalletByCurrencyGet**](docs/WalletApi.md#v10WalletByCurrencyGet) | **GET** /v1.0/wallet/{currency} | Wallet summary
*CoreApiV10.WalletApi* | [**v10WalletFeeGvtholdingGet**](docs/WalletApi.md#v10WalletFeeGvtholdingGet) | **GET** /v1.0/wallet/fee/gvtholding | GenesisMarkets commission data
*CoreApiV10.WalletApi* | [**v10WalletMultiByCurrencyAvailableGet**](docs/WalletApi.md#v10WalletMultiByCurrencyAvailableGet) | **GET** /v1.0/wallet/multi/{currency}/available | Multi wallet available
*CoreApiV10.WalletApi* | [**v10WalletMultiByCurrencyGet**](docs/WalletApi.md#v10WalletMultiByCurrencyGet) | **GET** /v1.0/wallet/multi/{currency} | Multi wallet summary
*CoreApiV10.WalletApi* | [**v10WalletMultiTransactionsExternalGet**](docs/WalletApi.md#v10WalletMultiTransactionsExternalGet) | **GET** /v1.0/wallet/multi/transactions/external | Wallet pending transactions
*CoreApiV10.WalletApi* | [**v10WalletMultiTransactionsGet**](docs/WalletApi.md#v10WalletMultiTransactionsGet) | **GET** /v1.0/wallet/multi/transactions | Multi wallet transactions
*CoreApiV10.WalletApi* | [**v10WalletPaygvtfeeOffPost**](docs/WalletApi.md#v10WalletPaygvtfeeOffPost) | **POST** /v1.0/wallet/paygvtfee/off | Disable paying platform fees with GVT
*CoreApiV10.WalletApi* | [**v10WalletPaygvtfeeOnPost**](docs/WalletApi.md#v10WalletPaygvtfeeOnPost) | **POST** /v1.0/wallet/paygvtfee/on | Enable paying platform fees with GVT
*CoreApiV10.WalletApi* | [**v10WalletTransactionByIdGet**](docs/WalletApi.md#v10WalletTransactionByIdGet) | **GET** /v1.0/wallet/transaction/{id} | Get transaction details
*CoreApiV10.WalletApi* | [**v10WalletTransactionsGet**](docs/WalletApi.md#v10WalletTransactionsGet) | **GET** /v1.0/wallet/transactions | Wallet transactions
*CoreApiV10.WalletApi* | [**v10WalletTransferPost**](docs/WalletApi.md#v10WalletTransferPost) | **POST** /v1.0/wallet/transfer | Transfer money
*CoreApiV10.WalletApi* | [**v10WalletWithdrawInfoGet**](docs/WalletApi.md#v10WalletWithdrawInfoGet) | **GET** /v1.0/wallet/withdraw/info | 
*CoreApiV10.WalletApi* | [**v10WalletWithdrawRequestCancelByTxIdPost**](docs/WalletApi.md#v10WalletWithdrawRequestCancelByTxIdPost) | **POST** /v1.0/wallet/withdraw/request/cancel/{txId} | 
*CoreApiV10.WalletApi* | [**v10WalletWithdrawRequestConfirmPost**](docs/WalletApi.md#v10WalletWithdrawRequestConfirmPost) | **POST** /v1.0/wallet/withdraw/request/confirm | 
*CoreApiV10.WalletApi* | [**v10WalletWithdrawRequestNewPost**](docs/WalletApi.md#v10WalletWithdrawRequestNewPost) | **POST** /v1.0/wallet/withdraw/request/new | 
*CoreApiV10.WalletApi* | [**v10WalletWithdrawRequestResendByTxIdPost**](docs/WalletApi.md#v10WalletWithdrawRequestResendByTxIdPost) | **POST** /v1.0/wallet/withdraw/request/resend/{txId} | 


## Documentation for Models

 - [CoreApiV10.AmountWithCurrency](docs/AmountWithCurrency.md)
 - [CoreApiV10.AndroidAppVersion](docs/AndroidAppVersion.md)
 - [CoreApiV10.AndroidVersion](docs/AndroidVersion.md)
 - [CoreApiV10.AssetEvent](docs/AssetEvent.md)
 - [CoreApiV10.AssetSelection](docs/AssetSelection.md)
 - [CoreApiV10.AssetsValue](docs/AssetsValue.md)
 - [CoreApiV10.AttachToSignalProvider](docs/AttachToSignalProvider.md)
 - [CoreApiV10.AttachToSignalProviderInfo](docs/AttachToSignalProviderInfo.md)
 - [CoreApiV10.BalanceChartElement](docs/BalanceChartElement.md)
 - [CoreApiV10.BlockchainInfo](docs/BlockchainInfo.md)
 - [CoreApiV10.Broker](docs/Broker.md)
 - [CoreApiV10.BrokerAccountType](docs/BrokerAccountType.md)
 - [CoreApiV10.BrokersInfo](docs/BrokersInfo.md)
 - [CoreApiV10.CaptchaCheckResult](docs/CaptchaCheckResult.md)
 - [CoreApiV10.CaptchaDetails](docs/CaptchaDetails.md)
 - [CoreApiV10.ChangePasswordViewModel](docs/ChangePasswordViewModel.md)
 - [CoreApiV10.ChartSimple](docs/ChartSimple.md)
 - [CoreApiV10.ConvertingDetails](docs/ConvertingDetails.md)
 - [CoreApiV10.CopyTradingAccountInfo](docs/CopyTradingAccountInfo.md)
 - [CoreApiV10.CopyTradingAccountsList](docs/CopyTradingAccountsList.md)
 - [CoreApiV10.CreateWithdrawalRequestModel](docs/CreateWithdrawalRequestModel.md)
 - [CoreApiV10.DashboardChartValue](docs/DashboardChartValue.md)
 - [CoreApiV10.DashboardPortfolioEvent](docs/DashboardPortfolioEvent.md)
 - [CoreApiV10.DashboardPortfolioEvents](docs/DashboardPortfolioEvents.md)
 - [CoreApiV10.DashboardProgramDetails](docs/DashboardProgramDetails.md)
 - [CoreApiV10.DashboardSummary](docs/DashboardSummary.md)
 - [CoreApiV10.DetachFromSignalProvider](docs/DetachFromSignalProvider.md)
 - [CoreApiV10.Enums](docs/Enums.md)
 - [CoreApiV10.ErrorMessage](docs/ErrorMessage.md)
 - [CoreApiV10.ErrorViewModel](docs/ErrorViewModel.md)
 - [CoreApiV10.ExternalTransactionDetails](docs/ExternalTransactionDetails.md)
 - [CoreApiV10.FcmTokenViewModel](docs/FcmTokenViewModel.md)
 - [CoreApiV10.ForgotPasswordViewModel](docs/ForgotPasswordViewModel.md)
 - [CoreApiV10.FundAssetInfo](docs/FundAssetInfo.md)
 - [CoreApiV10.FundAssetPart](docs/FundAssetPart.md)
 - [CoreApiV10.FundAssetPartWithIcon](docs/FundAssetPartWithIcon.md)
 - [CoreApiV10.FundAssetPercent](docs/FundAssetPercent.md)
 - [CoreApiV10.FundAssetsListInfo](docs/FundAssetsListInfo.md)
 - [CoreApiV10.FundBalanceChart](docs/FundBalanceChart.md)
 - [CoreApiV10.FundDetails](docs/FundDetails.md)
 - [CoreApiV10.FundDetailsFull](docs/FundDetailsFull.md)
 - [CoreApiV10.FundDetailsListStatistic](docs/FundDetailsListStatistic.md)
 - [CoreApiV10.FundFacet](docs/FundFacet.md)
 - [CoreApiV10.FundInvestInfo](docs/FundInvestInfo.md)
 - [CoreApiV10.FundNotificationSettingList](docs/FundNotificationSettingList.md)
 - [CoreApiV10.FundProfitChart](docs/FundProfitChart.md)
 - [CoreApiV10.FundSets](docs/FundSets.md)
 - [CoreApiV10.FundStatistic](docs/FundStatistic.md)
 - [CoreApiV10.FundWithdrawInfo](docs/FundWithdrawInfo.md)
 - [CoreApiV10.FundsList](docs/FundsList.md)
 - [CoreApiV10.GeeTestDetails](docs/GeeTestDetails.md)
 - [CoreApiV10.GeeTestResult](docs/GeeTestResult.md)
 - [CoreApiV10.IOsAppVersion](docs/IOsAppVersion.md)
 - [CoreApiV10.InternalTransferRequest](docs/InternalTransferRequest.md)
 - [CoreApiV10.LevelInfo](docs/LevelInfo.md)
 - [CoreApiV10.LevelUpData](docs/LevelUpData.md)
 - [CoreApiV10.LevelUpSummary](docs/LevelUpSummary.md)
 - [CoreApiV10.LoginViewModel](docs/LoginViewModel.md)
 - [CoreApiV10.ManagerAssets](docs/ManagerAssets.md)
 - [CoreApiV10.ManagerDashboard](docs/ManagerDashboard.md)
 - [CoreApiV10.ManagerFundWithdrawInfo](docs/ManagerFundWithdrawInfo.md)
 - [CoreApiV10.ManagerNotificationSettingList](docs/ManagerNotificationSettingList.md)
 - [CoreApiV10.ManagerOverview](docs/ManagerOverview.md)
 - [CoreApiV10.ManagerPortfolioEvent](docs/ManagerPortfolioEvent.md)
 - [CoreApiV10.ManagerPortfolioEvents](docs/ManagerPortfolioEvents.md)
 - [CoreApiV10.ManagerProfile](docs/ManagerProfile.md)
 - [CoreApiV10.ManagerProfileDetails](docs/ManagerProfileDetails.md)
 - [CoreApiV10.ManagerProgramCreateResult](docs/ManagerProgramCreateResult.md)
 - [CoreApiV10.ManagerProgramWithdrawInfo](docs/ManagerProgramWithdrawInfo.md)
 - [CoreApiV10.ManagerSimpleFund](docs/ManagerSimpleFund.md)
 - [CoreApiV10.ManagerSimpleProgram](docs/ManagerSimpleProgram.md)
 - [CoreApiV10.ManagersList](docs/ManagersList.md)
 - [CoreApiV10.MultiWalletExternalTransaction](docs/MultiWalletExternalTransaction.md)
 - [CoreApiV10.MultiWalletExternalTransactionsViewModel](docs/MultiWalletExternalTransactionsViewModel.md)
 - [CoreApiV10.MultiWalletFilters](docs/MultiWalletFilters.md)
 - [CoreApiV10.MultiWalletTransaction](docs/MultiWalletTransaction.md)
 - [CoreApiV10.MultiWalletTransactionsViewModel](docs/MultiWalletTransactionsViewModel.md)
 - [CoreApiV10.NewFundRequest](docs/NewFundRequest.md)
 - [CoreApiV10.NewProgramRequest](docs/NewProgramRequest.md)
 - [CoreApiV10.NotificationList](docs/NotificationList.md)
 - [CoreApiV10.NotificationSettingList](docs/NotificationSettingList.md)
 - [CoreApiV10.NotificationSettingViewModel](docs/NotificationSettingViewModel.md)
 - [CoreApiV10.NotificationViewModel](docs/NotificationViewModel.md)
 - [CoreApiV10.OrderModel](docs/OrderModel.md)
 - [CoreApiV10.OrderProgramData](docs/OrderProgramData.md)
 - [CoreApiV10.OrderSignalModel](docs/OrderSignalModel.md)
 - [CoreApiV10.OrderSignalProgramInfo](docs/OrderSignalProgramInfo.md)
 - [CoreApiV10.OtherAssetsValue](docs/OtherAssetsValue.md)
 - [CoreApiV10.PasswordModel](docs/PasswordModel.md)
 - [CoreApiV10.PeriodDate](docs/PeriodDate.md)
 - [CoreApiV10.PersonalFundDetailsFull](docs/PersonalFundDetailsFull.md)
 - [CoreApiV10.PersonalProgramDetailsFull](docs/PersonalProgramDetailsFull.md)
 - [CoreApiV10.PersonalSignalDetailsFull](docs/PersonalSignalDetailsFull.md)
 - [CoreApiV10.PlatformAsset](docs/PlatformAsset.md)
 - [CoreApiV10.PlatformAssets](docs/PlatformAssets.md)
 - [CoreApiV10.PlatformCurrency](docs/PlatformCurrency.md)
 - [CoreApiV10.PlatformInfo](docs/PlatformInfo.md)
 - [CoreApiV10.PlatformStatistic](docs/PlatformStatistic.md)
 - [CoreApiV10.PowDetails](docs/PowDetails.md)
 - [CoreApiV10.PowResult](docs/PowResult.md)
 - [CoreApiV10.ProfileFullViewModel](docs/ProfileFullViewModel.md)
 - [CoreApiV10.ProfileHeaderViewModel](docs/ProfileHeaderViewModel.md)
 - [CoreApiV10.ProfilePublic](docs/ProfilePublic.md)
 - [CoreApiV10.ProgramBalanceChart](docs/ProgramBalanceChart.md)
 - [CoreApiV10.ProgramBalanceChartElement](docs/ProgramBalanceChartElement.md)
 - [CoreApiV10.ProgramDetails](docs/ProgramDetails.md)
 - [CoreApiV10.ProgramDetailsFull](docs/ProgramDetailsFull.md)
 - [CoreApiV10.ProgramDetailsListStatistic](docs/ProgramDetailsListStatistic.md)
 - [CoreApiV10.ProgramDetailsRating](docs/ProgramDetailsRating.md)
 - [CoreApiV10.ProgramFacet](docs/ProgramFacet.md)
 - [CoreApiV10.ProgramFilters](docs/ProgramFilters.md)
 - [CoreApiV10.ProgramInfo](docs/ProgramInfo.md)
 - [CoreApiV10.ProgramInvestInfo](docs/ProgramInvestInfo.md)
 - [CoreApiV10.ProgramMinimumDeposit](docs/ProgramMinimumDeposit.md)
 - [CoreApiV10.ProgramNotificationSettingList](docs/ProgramNotificationSettingList.md)
 - [CoreApiV10.ProgramPeriodViewModel](docs/ProgramPeriodViewModel.md)
 - [CoreApiV10.ProgramPeriodsViewModel](docs/ProgramPeriodsViewModel.md)
 - [CoreApiV10.ProgramProfitChart](docs/ProgramProfitChart.md)
 - [CoreApiV10.ProgramPwdUpdate](docs/ProgramPwdUpdate.md)
 - [CoreApiV10.ProgramRequest](docs/ProgramRequest.md)
 - [CoreApiV10.ProgramRequests](docs/ProgramRequests.md)
 - [CoreApiV10.ProgramSets](docs/ProgramSets.md)
 - [CoreApiV10.ProgramStatistic](docs/ProgramStatistic.md)
 - [CoreApiV10.ProgramTag](docs/ProgramTag.md)
 - [CoreApiV10.ProgramTransactionDetails](docs/ProgramTransactionDetails.md)
 - [CoreApiV10.ProgramUpdate](docs/ProgramUpdate.md)
 - [CoreApiV10.ProgramWithdrawInfo](docs/ProgramWithdrawInfo.md)
 - [CoreApiV10.ProgramsInfo](docs/ProgramsInfo.md)
 - [CoreApiV10.ProgramsLevelsInfo](docs/ProgramsLevelsInfo.md)
 - [CoreApiV10.ProgramsList](docs/ProgramsList.md)
 - [CoreApiV10.RateItem](docs/RateItem.md)
 - [CoreApiV10.RatesModel](docs/RatesModel.md)
 - [CoreApiV10.RatesModelRates](docs/RatesModelRates.md)
 - [CoreApiV10.RecoveryCode](docs/RecoveryCode.md)
 - [CoreApiV10.RecoveryCodesViewModel](docs/RecoveryCodesViewModel.md)
 - [CoreApiV10.RegisterInvestorViewModel](docs/RegisterInvestorViewModel.md)
 - [CoreApiV10.RegisterManagerViewModel](docs/RegisterManagerViewModel.md)
 - [CoreApiV10.ResendConfirmationViewModel](docs/ResendConfirmationViewModel.md)
 - [CoreApiV10.ResetPasswordViewModel](docs/ResetPasswordViewModel.md)
 - [CoreApiV10.SearchViewModel](docs/SearchViewModel.md)
 - [CoreApiV10.SignalDetails](docs/SignalDetails.md)
 - [CoreApiV10.SignalSubscription](docs/SignalSubscription.md)
 - [CoreApiV10.SignalsList](docs/SignalsList.md)
 - [CoreApiV10.TradesSignalViewModel](docs/TradesSignalViewModel.md)
 - [CoreApiV10.TradesViewModel](docs/TradesViewModel.md)
 - [CoreApiV10.TransactionDetails](docs/TransactionDetails.md)
 - [CoreApiV10.TwoFactorAuthenticator](docs/TwoFactorAuthenticator.md)
 - [CoreApiV10.TwoFactorAuthenticatorConfirm](docs/TwoFactorAuthenticatorConfirm.md)
 - [CoreApiV10.TwoFactorCodeModel](docs/TwoFactorCodeModel.md)
 - [CoreApiV10.TwoFactorStatus](docs/TwoFactorStatus.md)
 - [CoreApiV10.UpdatePersonalDetailViewModel](docs/UpdatePersonalDetailViewModel.md)
 - [CoreApiV10.UpdateProfileViewModel](docs/UpdateProfileViewModel.md)
 - [CoreApiV10.UploadResult](docs/UploadResult.md)
 - [CoreApiV10.UserCommissionData](docs/UserCommissionData.md)
 - [CoreApiV10.ValueChartBar](docs/ValueChartBar.md)
 - [CoreApiV10.WalletBaseData](docs/WalletBaseData.md)
 - [CoreApiV10.WalletData](docs/WalletData.md)
 - [CoreApiV10.WalletInfo](docs/WalletInfo.md)
 - [CoreApiV10.WalletMultiAvailable](docs/WalletMultiAvailable.md)
 - [CoreApiV10.WalletMultiSummary](docs/WalletMultiSummary.md)
 - [CoreApiV10.WalletSummary](docs/WalletSummary.md)
 - [CoreApiV10.WalletTransaction](docs/WalletTransaction.md)
 - [CoreApiV10.WalletTransactionsViewModel](docs/WalletTransactionsViewModel.md)
 - [CoreApiV10.WalletWithdrawalInfo](docs/WalletWithdrawalInfo.md)
 - [CoreApiV10.WalletsGrandTotal](docs/WalletsGrandTotal.md)
 - [CoreApiV10.WalletsInfo](docs/WalletsInfo.md)
 - [CoreApiV10.WithdrawalInfo](docs/WithdrawalInfo.md)
 - [CoreApiV10.WithdrawalSummary](docs/WithdrawalSummary.md)


## Documentation for Authorization

 All endpoints do not require authorization.

