How to pass json to the rest api
I have got json to pass to the rest api.
created json:
{
"Path": "sample string 1",
"Name": "sample string 2",
"Value": "sample string 3",
"TimeStamp": "sample string 4"
}
if am using postJson method how to pass above json to PostJson method?

