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.
Request
The first step in verifying a root user's email. The root user whose email address is to be verified is sent an email containing a randomly generated code.
This code must then be provided in the consumerRootUserEmailVerify operation to verify the root user's email address.
Note that on the Sandbox Environment, the verificationCode is always set to "123456".
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/consumers/verification/email/send
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/consumers/verification/email/send
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.weavr.io/_mock/products/multi/openapi/consumers/verification/email/send \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-d '{
"email": "user@example.com"
}'No contentRequest
The second step in verifying the root user's email. The randomly generated code sent to the root user via email, using the consumerRootUserEmailVerificationCodeSend operation, is submitted here to verify the root user's email.
This is needed as part of the verification process for basic due diligence.
Note that on the Sandbox Environment, emails are not sent and the verification code is always set to "123456".
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/consumers/verification/email/verify
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/consumers/verification/email/verify
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.weavr.io/_mock/products/multi/openapi/consumers/verification/email/verify \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-d '{
"email": "user@example.com",
"verificationCode": "string"
}'No contentRequest
Consumers need to complete due diligence (KYC) before they can create instruments and fund transaction.
This operation initiates the due diligence process for the logged-in consumer.
Due Diligence is handled by a KYC provider, you will need to embed the KYC UI Component in your application to show the KYC screens to your users.
To initialise the KYC UI Component, you need a reference that is given to you in the response of this operation.
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/consumers/kyc
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/consumers/kyc
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.weavr.io/_mock/products/multi/openapi/consumers/kyc \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-d '{
"kycLevel": "KYC_LEVEL_1",
"prefillDetails": [
{
"name": "string",
"value": "string"
}
]
}'{ "reference": "string", "kycLevel": "KYC_LEVEL_1" }
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.