- Create a request for tokenized asset transfer to another wallet.
Returns a list of retail wallet object associated with the given customer id.
Request a new wallet for a customer from the selected custodian.
Get the current status of a P2P tokenized asset transfer.
Approves the customer for Monerium.
Requests Ibans for all customer wallets from Monerium.
Request to whitelist a retail wallet for an asset class.
Update asset class optin.
Monerium Redeem.
Place Order on Monerium to Redeem.
Create a request for toke...
Contains information for the transfer including amount, recipient address and credentials. Credentials to access the mnemonic seed. Encryption key file can be left empty, if it's stored on the Custodian side.
- Production Environmenthttps://api.nyala.de/api/external/v1/customers/retail-wallets/asset-transfer
- UAT / Sandbox Environmenthttps://uat.api.nyala.de/api/external/v1/customers/retail-wallets/asset-transfer
curl -i -X POST \
https://api.nyala.de/api/external/v1/customers/retail-wallets/asset-transfer \
-H 'Content-Type: application/json' \
-d '[
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"senderWalletId": "35c56557-40ae-4a50-bb58-1a3b35160b82",
"recipientWalletId": "8c07a449-acb8-4144-bace-b1962d4cf954",
"tokenizedAssetId": "ad18357f-6719-482f-a109-bd87822008b9",
"amount": 0.1,
"message": "string",
"blockchain": "Stellar"
}
]'Response
{ "errorMessageCodes": [ "string" ], "errors": [ { … } ], "data": [ { … } ], "warnings": [ "string" ] }