POST
/
api
/
v1
/
integrations
/
monerium
Create a new Monerium integration
const url = 'https://api.gnosispay.com/api/v1/integrations/monerium';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"signature":"<string>"}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
{
  "data": {
    "success": true,
    "status": 200,
    "description": "Successfully setup Monerium integration",
    "responseData": {},
    "moneriumProfileId": "profile_123456789",
    "iban": "DE44500105175407324931",
    "bic": "GENODEM1GLS"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
signature
string

Signature of the message "I hereby declare that I am the address owner." This signature is created by signing the message with the user's wallet. The exact message can be retrieved from the /api/v1/ibans/signing-message endpoint. The signature is used to verify ownership of the address on Monerium. Format: Ethereum signature string (e.g., "0x1234...").

Response

Successfully created a new Monerium integration

data
object