interfaceCreateAccountRequest
export interface CreateAccountRequest {
name: string;
accountType: AccountType;
userGroupId: number;
}/wallet/create-accountrequest
Promise<IWallet>
export interface CreateAccountRequest {
name: string;
accountType: AccountType;
userGroupId: number;
}export interface IWallet {
accountId: number;
accountName: string;
accountNameWithoutBalance: string;
accountNameClean: string;
amount: IMoney;
amountInBaseCurrency: IMoney;
fees: ITxFees[];
maxValue: number;
minValue: number;
userType: UserType;
isSelected: boolean;
lastPrice?: LastPrice;
instrumentType?: InstrumentType;
instrumentSymbol?: string;
isAmountNotAvailable: boolean;
provider?: number;
networks: ICurrencyNetwork[];
}POST /wallet/create-account
We use essential cookies to make this site work. With your consent, we may also use non-essential cookies for analytics and marketing. You can change your choices at any time.
See our Privacy Policy and Cookie Policy.