const response = await fetch('https://sentinel.metatable.dev/api/v1/unban-async', {
method: 'POST',
headers: {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"userId": 1,
"experienceId": 1,
"reason": "text"
}),
});
const data = await response.json();