const response = await fetch('https://base_url/groups/createGroup?id=id', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"groupName": "Group Testing 2",
"participants": [
"[email protected]",
"[email protected]"
]
}),
});
const data = await response.json();