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§
Source§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 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 }
Source§readonly amount?: number
readonly amount?: number
Amount of funds for the quote to create Default: 1 Type options: {"minValue":1}
Source§readonly amount Type?: "source" | "target"
readonly amount Type?: "source" | "target"
Whether the amount is to be sent or received Default: "source"
Source§readonly borderless Account Id?: string
readonly borderless Account Id?: string
ID 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"]}
Source§readonly currency?: string
readonly currency?: string
Code of the currency of the borderless account to retrieve the statement of
Source§readonly download Receipt?: boolean
readonly download Receipt?: boolean
Whether to download the transfer receipt as a PDF file. Only for executed transfers, having status 'Outgoing Payment Sent'.
Source§readonly 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;
}
readonly 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;
}
Default: {}
Source§readonly format?: "json" | "pdf" | "csv" | "xml"
readonly format?: "json" | "pdf" | "csv" | "xml"
File format to retrieve the statement in Default: "json"
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 5 Type options: {"minValue":1,"maxValue":1000}
Source§readonly operation?:
| "create"
| "get"
| "getAll"
| "delete"
| "execute"
| "getBalances"
| "getCurrencies"
| "getStatement"
readonly operation?:
| "create"
| "get"
| "getAll"
| "delete"
| "execute"
| "getBalances"
| "getCurrencies"
| "getStatement"
Default: "getBalances"
Source§readonly profile Id?: string
readonly profile Id?: string
ID 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"}
Source§readonly resource?:
| "account"
| "profile"
| "quote"
| "exchangeRate"
| "recipient"
| "transfer"
readonly resource?:
| "account"
| "profile"
| "quote"
| "exchangeRate"
| "recipient"
| "transfer"
Default: "account"
Source§readonly target Account Id?: string
readonly target Account Id?: string
ID of the account that will receive the funds. Choose from the list, or specify an ID using an expression. Default: [] Type options: {"loadOptionsMethod":"getRecipients"}
Default: {}