My API's GET method is located at "http://abc/abc"
Typically, the GET method includes parameters as get(url, options)
, with only two arguments.
However, in my scenario, I need to include a body with the request. The body structure is as follows:
{
"startIndex":"1",
"count":"150",
"groupBy":"product",
"searchTerm":"product:product1"
}
How can I pass this body along with the GET method? Any assistance would be greatly appreciated!