Hi AppD team, I'm working on few business use cases where requirement is to pull the value from request POST body of .Net web API. Below is the sample code snapshot, // POST api/wow [RequestHandler] public HttpResponseMessage Post([FromBody]dynamic requestInput) { try {} i need to get one of the body parameter value (string) of requestInput. I'm doing this POC using Method Invocation Data Collectors and Information Points using Getter chain. Can you guide me to achieve this task please.
... View more