Skip to main content
POST
/
api
/
v1
/
safe
/
set-currency
Set Safe Currency
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.valox.co/api/v1/safe/set-currency', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "tokenSymbol": "EURe"
}

Authorizations

Authorization
string
header
required

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

Response

Successfully set the currency for the Safe account

tokenSymbol
enum<string>

The token symbol set for the Safe account

Available options:
EURe,
GBPe,
USDCe