I tried using the POST method with "_method=GET". But the API does not recognize the fields parameter that I pass in the post body and only returns the default fields. Could you please give me an example code that I can refer for setting the fields parameter in the POST body.
Here is what I tried:
fields=company,site
{
"fields": "company,site"
}
{
"fields": [
"company",
"site"
]
}