const response = await fetch('https://beta.data.banyan.computer/api/v1/users/current', {
method: 'PATCH',
headers: {
"Authorization": "Bearer JWT",
"Content-Type": "application/json"
},
body: JSON.stringify({
"id": "text",
"email": "text",
"display_name": "text",
"account_tax_class": "text",
"subscription_id": "text"
}),
});
const data = await response.json();