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

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
{
  "data": {
    "success": true
  }
}

Body

application/json

Response

200
application/json

Successfully created a new Monerium profile

The response is of type object.