Account Token

function main(args) {
token = args._auth_token;
console.log(`The token selected is: ${token}`);
return {}
}def main(args):
token = args["_auth_token"]
print(f"The token selected is: {token}")
return {}Last updated
Was this helpful?