Azure Logic App HTTP Post build JSON with Dynamic Variables



我不知道如何为HTTP帖子构建JSON:

即,这在 [somevariablehere] 中不起作用。 如何手动连接我要发布的内容以及一些动态变量?

{
  "color": "green", 
  "message": "(awesome) [somevariablehere]   ", 
  "notify": false, 
  "message_format": "text"
}

查看逻辑应用定义语言的文档:https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-workflow-definition-language

您可以使用 concat 函数连接字符串,例如

{
  "color": "green", 
  "message": "@concat('awesome', actionBody('otherAction').someProperty)", 
  "notify": false, 
  "message_format": "text"
}

相关内容

  • 没有找到相关文章

最新更新