I could send a body(json) in Postman for a GET request.
My Problem is I am not able to do the same in my yes-no.service.ts file.
getYesNoDropdowns() {
return this.http.get(AppComponent.lookUpListUrl, { headers: headers });
}
How do I achieve this? I have to use only Get.
Thanks in advance!