GET
/
api
/
v1
/
ibans
/
signing-message
Get the message that needs to be signed for IBAN activation
const url = 'https://api.gnosispay.com/api/v1/ibans/signing-message';
const options = {method: 'GET', body: undefined};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
{
  "data": {
    "message": "I hereby declare that I am the address owner."
  }
}

Response

200
application/json

Successfully retrieved the signing message

The response is of type object.