const response = await fetch('https://api-uat.mioid.preventor.com/v1/business/activities/requests', {
method: 'POST',
headers: {
"Authorization": "text",
"x-api-key": "text",
"Content-Type": "application/json"
},
body: JSON.stringify({
"phone": {
"phone_country_code": "text",
"phone_number": "text"
},
"description": "text",
"validity_threshold": {
"time_unit": "text",
"amount": 0
}
}),
});
const data = await response.json();