JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.valox.co/api/v1/ibans/details', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{}
Returns IBAN details including the IBAN number, BIC, and Status.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully retrieved IBAN details
Show child attributes