【发布时间】:2022-11-30 19:08:56
【问题描述】:
我有 LogicApp,它从 Azure Alerts 获取 HTTP Post。 我想创建“DimensionNames”字符串变量,其中包括数组中的所有名称。 DimensionNames 值可以是“name1、name2、name3、name4”。 最后我会在“调用 Webhook”中使用 DimenstionNames 字符串。
怎么做?
《收到HTTP请求时》中的Request Body Json
{
"dimensions": {
"items": {
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"type": "array"
}
}
【问题讨论】:
-
那是你的模式,你能提供一个你收到的实际有效载荷的例子吗?
标签: azure-logic-apps