const response = await fetch('https://api.bringyour.com/device/remove-association', {
method: 'POST',
headers: {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
},
body: JSON.stringify({}),
});
const data = await response.json();