const response = await fetch('https://api.sellauth.com/v1/shops/{shopId}/feedbacks/{feedbackId}/reply', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"reply": "provident"
}),
});
const data = await response.json();