# Creation

Find in this article examples on how to create different types of wallets. Some wallets might require you contact Treezor to create them.

Regardless the type of Wallet created, the wallet.create webhook is sent upon creation.

Info icon

Information – Feature also available on the Dashboard

Wallets can also be managed via the Dashboard.

# Payment Account Wallet

The Payment Account Wallet has a walletTypeId of 10. This type of wallet requires KYC validation of the associated User.

# Mandatory parameters

Below are the necessary parameters to create a Payment Account Wallet.

Attribute Type Description
tariffId integer The fees applied to the Wallet, as defined by your contract with Treezor. Usually required, but may have a default value set by Treezor.
walletTypeId integer 10 for Payment Account Wallet.
userId integer The unique identifier of the User who owns the Wallet.
currency string The currency of the Wallet. Can only be EUR.
eventName string The name of the Wallet.

Here is the request to create a Wallet:

Here is an example of {payload}:

Returns a Wallet object, with its id. An IBAN (iban) and BIC (bic) are also automatically assigned and populated. You may create Virtual IBANs in a second step.

# Electronic Money Wallet

The Electronic Money Wallet has a walletTypeId of 9. This type of wallet doens't need KYC validation of the associated User.

# Mandatory parameters

Below are the necessary parameters to create an Electronic Money Wallet.

Attribute Type Description
tariffId integer The fees applied to the Wallet, as defined by your contract with Treezor. Usually required, but may have a default value set by Treezor.
walletTypeId integer 9 for Electronic Money Wallet.
userId integer The unique identifier of the User who owns the Wallet.
currency string Currency of the Wallet. Can only be EUR.
eventName string The Name of the Wallet.

Here is the request to create a Wallet:

Here is an example of {payload}:

Returns a Wallet object with its id. An IBAN (iban) and BIC (bic) are also automatically assigned and populated. You may create Virtual IBANs in a second step.

# Mirror or Technical Wallet

The Mirror or Technical Wallet has a walletTypeId of 13 and cannot be created manually.

Warning icon

Caution – Never use Wallet 13 for SEPA Transfers

Although Mirror and Technical Wallets have an IBAN, these IBAN should never be used to emit or receive SEPA Transfers.

# Electronic Money Card

The Electronic Money Card type of wallet has a walletTypeId of 14 and cannot be created manually.

Warning icon

Caution – Never use Wallet 13 for SEPA Transfers

Although Mirror and Technical Wallets have an IBAN, these IBAN should never be used to emit or receive SEPA Transfers.

Updated on: 3/7/2024, 12:52:14 PM