Create Two-Factor Authentication
Create Two-Factor Authentication
Creates a two-factor authentication token
const { setToken, Account } = require('@evecloud/sdk');
setToken('TOKEN');
Account.tfa.create().then((data) => {
console.log(data);
}).catch((error) => {
console.log(error);
});
const { setToken, Account } = require('@evecloud/sdk');
setToken('TOKEN');
Account.tfa.create().then((data) => {
console.log(data);
}).catch((error) => {
console.log(error);
});
Was this page helpful?
const { setToken, Account } = require('@evecloud/sdk');
setToken('TOKEN');
Account.tfa.create().then((data) => {
console.log(data);
}).catch((error) => {
console.log(error);
});