const response = await fetch('https://api-uat.mioid.preventor.com/v1/business/activities/requests/{request_id}/complete', {
method: 'POST',
headers: {
"Authorization": "text",
"x-api-key": "text",
"Content-Type": "application/json"
},
body: JSON.stringify({
"state": "COMPLETED",
"description": "text"
}),
});
const data = await response.json();