Delete a personal access token permanently. Like for the other token functions, this operation requires the user to authenticate with username/password credentials.

opal.token_delete(opal, name)

Arguments

opal

Opal object.

name

Name of the token

Examples

if (FALSE) {
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
opal.token_delete(o, 'sql-1')
opal.logout(o)
}