interfaceCreatePaymentAccountRequest
export interface CreatePaymentAccountRequest {
currency: string;
name: string;
provider: PaymentProviderType;
}/payments/accountsrequest
Promise<PaymentAccount>
export interface CreatePaymentAccountRequest {
currency: string;
name: string;
provider: PaymentProviderType;
}export interface PaymentAccount {
accountId: string;
accountName: string;
currency: Currency;
identifier: string;
description: string;
accountType: PaymentAccountType;
status: PaymentAccountStatus;
provider: PaymentProviderType;
amount: Money;
amountInBaseCurrency: Money;
availableAmount: Money;
availableAmountInBaseCurrency: Money;
identifiers: string[];
}POST /payments/accounts
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.