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.
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.
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/linked_accounts/{id}
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/linked_accounts/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.weavr.io/_mock/products/multi/openapi/linked_accounts/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'api-key: YOUR_API_KEY_HERE'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.
A user-friendly label assigned to the Linked Account to help end-users easily identify it within the application. This name can be updated at any time using the PATCH endpoint
The full name or corporate name of the account holder as registered with the external bank or payment service provider. This is the name under which the account is officially held.
An account can be of two types, Personal or Business:
- PERSONAL means that the account held at the external bank or PSP is registered under the ownership of a natural person or consumer identity;
- BUSINESS means that the account held at the external bank or PSP is registered under the ownership of a corporate entity.
The currency expressed in ISO-4217 code. Example: GBP, EUR, USD.
The country of the bank or institution at which the account is held.
The IBAN or Account Number and Sort Code of the account held at the external bank or payment service provider.
Bank details
The state of the linked account:
- PENDING_VERIFICATION: The Linked Account is pending the completion of the required verification steps.
- ACTIVE: The Linked Account is verified and active, ready to be used for self-to-self wire transfers.
- BLOCKED: The Linked Account is temporarily blocked, preventing any use of this external account in self-to-self wire transfers. A Linked Account can be unblocked by calling the Multi API endpoint
POST /linked_accounts/{id}/unblock. - REMOVED: The Linked Account has been removed from the platform and can no longer be used for self-to-self wire transfers unless a new verification is completed in future.
- REJECTED: The Linked Account failed the verification process and cannot be used for self-to-self wire transfers unless a new verification is completed in future. A Linked Account can transition through these different overall states, starting at the
PENDING_VERIFICATIONstate until all verification steps are followed through.
The timestamp when the linked account was created, expressed in Epoch timestamp using millisecond precision.
{ "id": "string", "profileId": "string", "tag": "string", "friendlyName": "string", "name": "string", "type": "BUSINESS", "currency": "str", "country": "st", "accountReference": { "accountNumber": "string", "sortCode": "string", "secondaryReference": "string" }, "state": "PENDING_VERIFICATION", "creationTimestamp": 0, "owner": { "type": "string", "id": "string" } }
The tag field is a custom field that can be used to search and filter.
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/linked_accounts/{id}
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/linked_accounts/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://api.weavr.io/_mock/products/multi/openapi/linked_accounts/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-d '{
"tag": "string",
"friendlyName": "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.
A user-friendly label assigned to the Linked Account to help end-users easily identify it within the application. This name can be updated at any time using the PATCH endpoint
The full name or corporate name of the account holder as registered with the external bank or payment service provider. This is the name under which the account is officially held.
An account can be of two types, Personal or Business:
- PERSONAL means that the account held at the external bank or PSP is registered under the ownership of a natural person or consumer identity;
- BUSINESS means that the account held at the external bank or PSP is registered under the ownership of a corporate entity.
The currency expressed in ISO-4217 code. Example: GBP, EUR, USD.
The country of the bank or institution at which the account is held.
The IBAN or Account Number and Sort Code of the account held at the external bank or payment service provider.
Bank details
The state of the linked account:
- PENDING_VERIFICATION: The Linked Account is pending the completion of the required verification steps.
- ACTIVE: The Linked Account is verified and active, ready to be used for self-to-self wire transfers.
- BLOCKED: The Linked Account is temporarily blocked, preventing any use of this external account in self-to-self wire transfers. A Linked Account can be unblocked by calling the Multi API endpoint
POST /linked_accounts/{id}/unblock. - REMOVED: The Linked Account has been removed from the platform and can no longer be used for self-to-self wire transfers unless a new verification is completed in future.
- REJECTED: The Linked Account failed the verification process and cannot be used for self-to-self wire transfers unless a new verification is completed in future. A Linked Account can transition through these different overall states, starting at the
PENDING_VERIFICATIONstate until all verification steps are followed through.
The timestamp when the linked account was created, expressed in Epoch timestamp using millisecond precision.
{ "id": "string", "profileId": "string", "tag": "string", "friendlyName": "string", "name": "string", "type": "BUSINESS", "currency": "str", "country": "st", "accountReference": { "accountNumber": "string", "sortCode": "string", "secondaryReference": "string" }, "state": "PENDING_VERIFICATION", "creationTimestamp": 0, "owner": { "type": "string", "id": "string" } }
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/linked_accounts/{id}/remove
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/linked_accounts/{id}/remove
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.weavr.io/_mock/products/multi/openapi/linked_accounts/{id}/remove' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'api-key: YOUR_API_KEY_HERE'No content