const options = {
method: 'DELETE',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({token: '<string>', tokenTypeHint: 'access_token'})
};
fetch('https://api.example.com/v1/regions/global/auth/tokens', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));