Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,094 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi team
I wanted to integrate of our our tools with sentinel via webhook after creating the app and run test i got this error { "Error": "InvalidDataFormat", "Message": null } how can i fix it this is my code
{
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"actions": {
"Send_Data": {
"inputs": {
"body": "@triggerBody()",
"headers": {
"Content-Type": "application/json",
"Log-Type": "cocko_logs"
},
"host": {
"connection": {
"referenceName": "azureloganalyticsdatacollector"
}
},
"method": "post",
"path": "/api/logs"
},
"runAfter": {},
"type": "ApiConnection"
}
},
"contentVersion": "1.0.0.0",
"outputs": {},
"triggers": {
"When_a_HTTP_request_is_received": {
"inputs": {
"method": "POST"
},
"kind": "Http",
"type": "Request"
}
}
},
"kind": "Stateful"
}