const response = await fetch("https://apiagrofin.okslab.uz/api/v1/admin/news-categories/{newsCategory_id}", {
method: "PUT",
headers: {
"Authorization": "Bearer YOUR_TOKEN",
"Accept": "application/json",
"Content-Type": "application/json",
},
body: JSON.stringify({
"slug": "string",
"title": {},
"parent_id": 0,
"status": 1,
"sort_order": 0
}),
});