JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.valox.co/api/v1/ibans/available', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "data": { "available": true } }
Returns whether the user is eligible to enable an IBAN on their account.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
IBAN availability status for the user.
Show child attributes
Indicates if the user is eligible to enable an IBAN.