Manage authentication for your users.
- Cancel outgoing wire transfer transactions
Weavr Multi Product API (3.63.5)
Weavr Multi API provides a simple and flexible way to issue cards and accounts to your customers.
By integrating Weavr Multi API in your application you can embed banking capabilities within your app and provide a seamless experience for your customers.
Authentication
Each request to the Multi API must include an api-key that represents your account. You can obtain an API Key by registering for a Multi account here.
Almost all endpoints require a secondary authentication token auth_token that represents the user for whom the request is being executed.
Managed Accounts are a type of financial instrument offered by Weavr.
They hold funds for their owner, and can be upgraded to IBANs so as to receive and send funds to instruments outside of the Weavr Platform, via Wire Transfers.
Managed accounts can also be used as source and destination instruments in the transfer and send transactions.
Managed Cards are a type of financial instrument offered by Weavr.
You can create virtual or physical cards that are issued to the consumer or corporate identity.
A card created in prepaid mode has its own balance, whereas a card created in debit mode does not have its own balance but taps into the balance of its parent managed account.
Linked Accounts are external bank accounts that users connect to their profiles within the Weavr Platform.
These accounts allow users to link their existing bank accounts, held at external financial institutions, to the Weavr Platform, enabling secure and efficient transfer of funds between their own accounts.
Linked Accounts are designed to streamline the process of moving money between a user’s various bank accounts, providing a convenient and integrated way to manage personal finances across different financial institutions.
Request
Deprecated in favour of the Operations in Bulk.
Transfers funds from multiple managed accounts to multiple external bank accounts.
The Outgoing Wire Transfer Profile (configured in the Multi Portal) specified determines the behaviour and restrictions of the transaction (for example, fees).
Note that even if the transaction is created successfully, you still need to check its state in order to determine if it is pending completion of an authentication challenge by the user.
The object representing the outgoing wire transfers' details.
The profile Id which a specific identity, instrument or transaction type is linked to.
Profiles contain configuration and determine behavioral aspects of the newly created transaction, for example, fees that may apply.
You can have one or more profiles linked to your application, and these can be used to drive different behaviors according to your product's needs.
Profile Ids can be found in the Multi Portal, in the API Credentials page.
The tag field is a custom field that can be used to search and filter.
The managed account from which funds will be collected.
The amount, in same currency as source and destination, that was transferred from the source.
The currency expressed in ISO-4217 code. Example: GBP, EUR, USD.
These details are passed to the beneficiary as the reference . This field is mandatory for wire transfers executed over SEPA. The allowed length is dependent on the payment type:
SEPA <= 35 characters. An extended character set is accepted to cater for all European languages. If SEPA does not support a particular character, it is automatically converted to an acceptable alternative, in line with SEPA scheme guidance.
Faster Payments <= 18 characters
Details of the beneficiary of the outgoing wire transfer.
The beneficiary's full name. The allowed length and pattern is dependent on the bank account details type:
IBANDetails: >= 1 character and <= 150 characters. An extended character set is accepted to cater for all European languages. If SEPA does not support a particular character, it is automatically converted to an acceptable alternative, in line with SEPA scheme guidance.
FasterPaymentsBankDetailsOrBACSBankDetails: >= 1 character and <= 140 characters with a pattern of ^[a-zA-Z0-9\/\-?:().,’+\s#=!"%&*<>;\{@\r\n]*$ (please note that the ’ symbol is the unicode value U+2019 (right single quotation mark) and not the unicode value U+0027 (apostrophe))
The type of beneficiary account. Required only when FasterPaymentsBankDetailsOrBACSBankDetails are specified
The beneficiary’s address. For SEPA, an extended character set is accepted to cater for all European languages. If SEPA does not support a particular character, it is automatically converted to an acceptable alternative, in line with SEPA scheme guidance.
The beneficiary's bank address.
The beneficiary's bank country in ISO 3166 alpha-2 format.
Details of the beneficiary bank account, depending on the type of transfer chosen.
Bank details used in case the wire transfer is executed over SEPA or RIX
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/outgoing_wire_transfers/bulk/create
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/outgoing_wire_transfers/bulk/create
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.weavr.io/_mock/products/multi/openapi/outgoing_wire_transfers/bulk/create \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-H 'idempotency-ref: string' \
-d '{
"outgoingWireTransfers": [
{
"profileId": "string",
"tag": "string",
"sourceInstrument": {
"type": "managed_accounts",
"id": "string"
},
"transferAmount": {
"currency": "str",
"amount": 0
},
"description": "string",
"destinationBeneficiary": {
"name": "string",
"type": "PERSONAL",
"address": "string",
"bankName": "string",
"bankAddress": "string",
"bankCountry": "st",
"bankAccountDetails": {
"iban": "stringstringstr",
"bankIdentifierCode": "stringst"
},
"nationality": "st",
"dateOfBirth": "2019-08-24"
},
"scheduledTimestamp": "string"
}
]
}'Success
The profile Id which a specific identity, instrument or transaction type is linked to.
Profiles contain configuration and determine behavioral aspects of the newly created transaction, for example, fees that may apply.
You can have one or more profiles linked to your application, and these can be used to drive different behaviors according to your product's needs.
Profile Ids can be found in the Multi Portal, in the API Credentials page.
The tag field is a custom field that can be used to search and filter.
The managed account from which funds will be collected.
The amount, in same currency as source and destination, that was transferred from the source.
The currency expressed in ISO-4217 code. Example: GBP, EUR, USD.
These details are passed to the beneficiary as the reference . This field is mandatory for wire transfers executed over SEPA. The allowed length is dependent on the payment type:
SEPA <= 35 characters. An extended character set is accepted to cater for all European languages. If SEPA does not support a particular character, it is automatically converted to an acceptable alternative, in line with SEPA scheme guidance.
Faster Payments <= 18 characters
Details of the beneficiary of the outgoing wire transfer.
The beneficiary's full name. The allowed length and pattern is dependent on the bank account details type:
IBANDetails: >= 1 character and <= 150 characters. An extended character set is accepted to cater for all European languages. If SEPA does not support a particular character, it is automatically converted to an acceptable alternative, in line with SEPA scheme guidance.
FasterPaymentsBankDetailsOrBACSBankDetails: >= 1 character and <= 140 characters with a pattern of ^[a-zA-Z0-9\/\-?:().,’+\s#=!"%&*<>;\{@\r\n]*$ (please note that the ’ symbol is the unicode value U+2019 (right single quotation mark) and not the unicode value U+0027 (apostrophe))
The type of beneficiary account. Required only when FasterPaymentsBankDetailsOrBACSBankDetails are specified
The beneficiary’s address. For SEPA, an extended character set is accepted to cater for all European languages. If SEPA does not support a particular character, it is automatically converted to an acceptable alternative, in line with SEPA scheme guidance.
The beneficiary's bank address.
The beneficiary's bank country in ISO 3166 alpha-2 format.
Details of the beneficiary bank account, depending on the type of transfer chosen.
Nationality of the user - using ISO 3166 alpha-2.
{ "response": [ { … } ] }
Contains the details of the transactions to be cancelled.
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/outgoing_wire_transfers/bulk/cancel
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/outgoing_wire_transfers/bulk/cancel
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.weavr.io/_mock/products/multi/openapi/outgoing_wire_transfers/bulk/cancel \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-d '{
"cancellations": [
{
"id": "string",
"cancellationReason": "string"
}
]
}'Success
Contains the cancellation details for each of the transactions.
Indicates the reason why the cancel operation could not be executed. May be included in the response if the state is "ERROR".
- "GENERIC": A generic error has occurred.
- "TRANSACTION_NOT_SCHEDULED": The transaction is not in state SCHEDULED.
- "FORBIDDEN": The current user is not allowed to access this transaction.
- "NOT_FOUND": The transaction does not exist.
{ "cancellations": [ { … } ] }
Request
Deprecated in favour of Challenges endpoints
Starts the verification process for an outgoing wire transfer in which a one-time password is sent to a device belonging to the logged-in user that was previously enrolled through the /authentication_factors/otp/{channel} endpoint.
You should only start this process if the outgoing wire transfer state is PENDING_CHALLENGE.
Note that on the Sandbox Environment, text messages are not sent and the one-time-password is always "123456".
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/outgoing_wire_transfers/{id}/challenges/otp/{channel}
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/outgoing_wire_transfers/{id}/challenges/otp/{channel}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.weavr.io/_mock/products/multi/openapi/outgoing_wire_transfers/{id}/challenges/otp/{channel}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'api-key: YOUR_API_KEY_HERE'No content