const response = await fetch('https://api.powerdevbox.com/v1/autoreview/file', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"configs": {},
"properties": {
"definition": {},
"displayName": "text",
"environment": "text",
"name": "text",
"owner": "text"
}
}),
});
const data = await response.json();