interface WiseNodeParameters {
additionalFields?:
| {
lineStyle?: "COMPACT"
| "FLAT";
range?: {
rangeProperties: {
intervalEnd?: string;
intervalStart?: string;
};
};
}
| {
interval?: "hour"
| "day"
| "minute";
range?: {
rangeProperties: { from?: string; to?: string };
};
time?: string;
}
| { reference?: string };
amount?: number;
amountType?: "source" | "target";
binaryProperty?: string;
borderlessAccountId?: string;
currency?: string;
downloadReceipt?: boolean;
fileName?: string;
filters?: {
range?: {
rangeProperties: {
createdDateEnd?: string;
createdDateStart?: string;
};
};
sourceCurrency?: string;
status?: | "cancelled"
| "unknown"
| "bounced_back"
| "charged_back"
| "funds_converted"
| "funds_refunded"
| "incoming_payment_waiting"
| "outgoing_payment_sent"
| "processing"
| "waiting_recipient_input_to_proceed";
targetCurrency?: string;
};
format?: "json"
| "pdf"
| "csv"
| "xml";
limit?: number;
operation?:
| "create"
| "get"
| "getAll"
| "delete"
| "execute"
| "getBalances"
| "getCurrencies"
| "getStatement";
profileId?: string;
quoteId?: string;
resource?: | "account"
| "profile"
| "quote"
| "exchangeRate"
| "recipient"
| "transfer";
returnAll?: boolean;
source?: string;
sourceCurrency?: string;
target?: string;
targetAccountId?: string;
targetCurrency?: string;
transferId?: string;
}Properties§
readonly additional Fields?:
| {
lineStyle?: "COMPACT"
| "FLAT";
range?: {
rangeProperties: {
intervalEnd?: string;
intervalStart?: string;
};
};
}
| {
interval?: "hour"
| "day"
| "minute";
range?: {
rangeProperties: { from?: string; to?: string };
};
time?: string;
}
| { reference?: string }readonly amount?: numberAmount of funds for the quote to create Default: 1 Type options: {"minValue":1}
readonly amount Type?: "source" | "target"Whether the amount is to be sent or received Default: "source"
readonly binary Property?: stringDefault: "data"
readonly borderless Account Id?: stringID of the borderless account to retrieve the statement of. Choose from the list, or specify an ID using an expression. Default: [] Type options: {"loadOptionsMethod":"getBorderlessAccounts","loadOptionsDependsOn":["profileId"]}
readonly currency?: stringCode of the currency of the borderless account to retrieve the statement of
readonly download Receipt?: booleanWhether to download the transfer receipt as a PDF file. Only for executed transfers, having status 'Outgoing Payment Sent'.
readonly file Name?: stringName of the file that will be downloaded
readonly filters?: { ... }Default: {}
readonly format?: "json" | "pdf" | "csv" | "xml"File format to retrieve the statement in Default: "json"
readonly limit?: numberMax number of results to return Default: 5 Type options: {"minValue":1,"maxValue":1000}
readonly operation?:
| "create"
| "get"
| "getAll"
| "delete"
| "execute"
| "getBalances"
| "getCurrencies"
| "getStatement"Default: "getBalances"
readonly profile Id?: stringID of the user profile to retrieve the balance of. Choose from the list, or specify an ID using an expression. Default: [] Type options: {"loadOptionsMethod":"getProfiles"}
readonly quote Id?: stringID of the quote to retrieve
readonly resource?:
| "account"
| "profile"
| "quote"
| "exchangeRate"
| "recipient"
| "transfer"Default: "account"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly source?: stringCode of the source currency to retrieve the exchange rate for
readonly source Currency?: stringCode of the currency to send for the quote to create
readonly target?: stringCode of the target currency to retrieve the exchange rate for
readonly target Account Id?: stringID of the account that will receive the funds. Choose from the list, or specify an ID using an expression. Default: [] Type options: {"loadOptionsMethod":"getRecipients"}
readonly target Currency?: stringCode of the currency to receive for the quote to create
readonly transfer Id?: stringID of the transfer to delete
Default: {}