Hi,
I've successfully registered a Webhook on my on-prem 9.0 org, and its working well. The data is sent to Flow (Http request: When a HTTP request is received). The plugin is successful and i get the data, but i cant figure out how to parse the data ( in Flow). As described in this article, the Json data looks like the example below. In this example, I would be looking to extract the Full Name (James Glynn). In proper JSON structured data, the output would look like this: { "fullname": "James Glynn"}
"InputParameters": [{
"key": "Target",
"value": {
"__type": "Entity:http:\/\/schemas.microsoft.com\/xrm\/2011\/Contracts",
"Attributes": [{
"key": "firstname",
"value": "James"
}, {
"key": "contactid",
"value": "6d81597f-0f9f-e711-8122-000d3aa2331c"
}, {
"key": "fullname",
"value": "James Glynn"
}, {
"key": "yomifullname",
"value": "James Glynn"
*This post is locked for comments