Tokens
Delete Token
Deletes the account token
const { setToken, Account } = require('@evecloud/sdk');
setToken('TOKEN');
Account.tokens.delete('TOKEN_ID').then((data) => {
console.log(data);
}).catch((error) => {
console.log(error);
});
Was this page helpful?
const { setToken, Account } = require('@evecloud/sdk');
setToken('TOKEN');
Account.tokens.delete('TOKEN_ID').then((data) => {
console.log(data);
}).catch((error) => {
console.log(error);
});