v1
latestOpenAPI 3.0.02026-07-267331140.7 KBIBAN
Create a new Monerium integration
Creates a new Monerium integration for the authenticated user and associates it with the authenticated user's EOA address. All operations on Monerium are done through their API, this endpoint is just a way to reuse the GP KYC to open an account on Monerium.
- If the user does not have a Monerium account, this endpoint will create a new one and associate it with the authenticated user's EOA address.
- If the user already has a Monerium account, you do not need to call this endpoint again.
Just use the Monerium API directly to request access to the user's monerium account. Check their documentation for more information: https://monerium.dev/api-docs/v2
post/api/v1/integrations/monerium
Request body
Response
Successfully created a new Monerium integration
Example response
{
"data": {
"success": true,
"status": 200,
"description": "Successfully setup Monerium integration",
"moneriumProfileId": "profile_123456789",
"iban": "DE44500105175407324931",
"bic": "GENODEM1GLS",
"responseHeaders": {
"content-type": "application/json"
}
}
}