OK
const response = await fetch('//api/auth/config', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "message": "text", "success": false }
const response = await fetch('//api/auth/config/{id}', { method: 'DELETE', headers: {}, }); const data = await response.json();