I am using parameters in post method, for example:
https://localhost:44345/exemple?id=123&value=123&anotherValue=123
But, I'd like to do not show the parameters in the header, how can I send these in the body as a json, example:
{
"id": "123",
"value": "123",
"anotherValue": "123"
}
Let me know if someone already asked this, thanks.