Skip to main content
DELETE
/
api
/
v1
/
ibans
/
reset
Resets the IBAN integration for this User
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.valox.co/api/v1/ibans/reset', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "data": {
    "success": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successfully created or linked Monerium profile

data
object