I am trying to call the http post call in angular with a body but I am not getting the response.
callAddGroupAPI(formId, groupJSON){
let json = {
"group":groupJSON
}
this.http.post(this.apiURL+'AddGroup/'+formId+'/3',{body:json}).subscribe(message => {
alert("success");
},
(err) => {
console.log(err)
}
)
}
where 'this.apiURL/AddGroup/formId/groupId' is my URL and I want to send some JSON body where 'key = group' and "value=someJSON"

