JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.valox.co/api/v1/ibans/signing-message', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "data": { "message": "I hereby declare that I am the address owner." } }
Returns the standard message that users need to sign with their wallet to verify ownership for Monerium IBAN activation.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully retrieved the signing message
Show child attributes
"I hereby declare that I am the address owner."