Path parameters
The unique identifier of the wallet.
Responses
200
200
The list of banking aliases created by the platform.
Show properties
Show properties
The Banking Alias object created by the platform.
Show properties
Show properties
Max. length: 255 charactersThe owner of the banking alias. The
OwnerName
must match the name of the user owning the wallet (FirstName
and LastName
for a Natural User, Name
for a Legal User).If Mangopay has provided your platform with a Technical Collection Virtual IBAN for reconciliation purposes, the OwnerName
must be “Mangopay S.A.” or “Mangopay S.A. - Your Trading Name”. Please ensure your have confirmed this integration with our teams via the Dashboard.The IBAN (international bank account number) of the banking alias.
The BIC (international identifier of the bank) for the banking alias.
The unique identifier of the user whose wallet is credited, in other words, the Owner of the wallet for which the alias is created.
Note: Once the banking alias is created, it is not possible to change the
Note: Once the banking alias is created, it is not possible to change the
CreditedUserId
.Returned values: DE, DK, ES, FR, GB, LU, PLThe country of the banking alias. The country must correspond to the currency of the wallet.
Max. length: 255 charactersCustom data that you can add to this object.
The date and time at which the object was created.
Whether or not the banking alias is active.Caution: Setting this value to
false
is irreversible.Returned values:
IBAN
, GB
The type of banking alias.The GB
value is only returned if the Country
is GB
.Max length: 128 characters (see data formats for details)The unique identifier of the object.
The unique identifier of the wallet.
Copy
Ask AI
[
{
"OwnerName": "Alex Smith",
"IBAN": "FR7674521100005657670994474",
"BIC": "MPAYFRP1PIN",
"CreditedUserId": "user_m_01HSB23417BFG7YXR7E371JSEA",
"Country": "FR",
"Tag": "Created using Mangopay API Postman Collection",
"CreationDate": 1710846581,
"Active": true,
"Type": "IBAN",
"Id": "wltbank_m_01HSB6E769Y3ZBYDJACSP3THGA",
"WalletId": "wlt_m_01HSB6DE1YT1EMTH0K7ASYPG96"
}
]
Copy
Ask AI
const mangopayInstance = require('mangopay2-nodejs-sdk')
const mangopay = new mangopayInstance({
clientId: 'your-client-id',
clientApiKey: 'your-api-key',
})
let myWallet = {
Id: '169738660',
}
const getWalletBankingAlias = async (walletId) => {
return await mangopay.BankingAliases.getAll(walletId)
.then((response) => {
console.info(response)
return response
})
.catch((err) => {
console.log(err)
return false
})
}
getWalletBankingAlias(myWallet.Id)