const response = await fetch('https://api.apono.io/api/v2/bulk/identities/attributes', {
method: 'DELETE',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify([
{
"email": "text",
"attribute_types": [
"text"
]
}
]),
});
const data = await response.json();