Manage authentication for your users.
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.
Request
Assign an IBAN to a Managed Account.
IBANs enable managed accounts to receive and send funds via wire transfers.
Assigning an IBAN to a Managed Account may be done asynchronously, in which case the ManagedAccountIBAN.state will be set to PENDING_ALLOCATION until bank details are ready to use.
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/managed_accounts/{id}/iban
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/managed_accounts/{id}/iban
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.weavr.io/_mock/products/multi/openapi/managed_accounts/{id}/iban' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'api-key: YOUR_API_KEY_HERE' \
-H 'idempotency-ref: string'Success
The state of the Managed Account's IBAN as follows:
- UNALLOCATED: The Managed Account has never been assigned an IBAN. Use the managedAccountsIBANUpgrade operation to assign an IBAN to a Managed Account.
- PENDING_ALLOCATION: The IBAN is being allocated to the Managed Account.
- ALLOCATED: An IBAN is allocated to the Managed Account.
A list of bank account details associated with the IBAN. Multiple details can be provided if multiple IBAN providers are supported by your payment model.
The beneficiary name and surname details to be used when initiating a deposit onto the IBAN.
The beneficiary bank name to be used when initiating a deposit onto the IBAN.
The beneficiary bank address to be used when initiating a deposit onto the IBAN.
A reference required by the partner bank to execute a deposit on the managed account.
If provided, make sure that this is included as part of the wire transfer details when initiating a deposit.
The bank details required to initiate a deposit on the managed account.
The details required to deposit on the IBAN vary depending on the wire transfer channel that will be used.
{ "state": "UNALLOCATED", "bankAccountDetails": [ { … } ] }
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/managed_accounts/{id}/iban
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/managed_accounts/{id}/iban
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.weavr.io/_mock/products/multi/openapi/managed_accounts/{id}/iban' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'api-key: YOUR_API_KEY_HERE'Success
The state of the Managed Account's IBAN as follows:
- UNALLOCATED: The Managed Account has never been assigned an IBAN. Use the managedAccountsIBANUpgrade operation to assign an IBAN to a Managed Account.
- PENDING_ALLOCATION: The IBAN is being allocated to the Managed Account.
- ALLOCATED: An IBAN is allocated to the Managed Account.
A list of bank account details associated with the IBAN. Multiple details can be provided if multiple IBAN providers are supported by your payment model.
The beneficiary name and surname details to be used when initiating a deposit onto the IBAN.
The beneficiary bank name to be used when initiating a deposit onto the IBAN.
The beneficiary bank address to be used when initiating a deposit onto the IBAN.
A reference required by the partner bank to execute a deposit on the managed account.
If provided, make sure that this is included as part of the wire transfer details when initiating a deposit.
The bank details required to initiate a deposit on the managed account.
The details required to deposit on the IBAN vary depending on the wire transfer channel that will be used.
{ "state": "UNALLOCATED", "bankAccountDetails": [ { … } ] }
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/managed_accounts/{id}/block
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/managed_accounts/{id}/block
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.weavr.io/_mock/products/multi/openapi/managed_accounts/{id}/block' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'api-key: YOUR_API_KEY_HERE' \
-H 'idempotency-ref: string'No contentManaged 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.