Got a simple HTTP GET to an external endpoint returning valid JSON, but the success output is undefined. The payload looks like { “result”: { “id”: 123 } } and I mapped it to $.result.id in the Data Action config. Verified the token works and the endpoint hits fine via Postman. What am I missing?
Check the response headers. If the API returns Content-Type: application/json; charset=utf-8, the .NET SDK sometimes trips up on the charset suffix during deserialization. Force the media type to just application/json in the Data Action config or add a step to strip the charset before mapping.