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