从Azure Logic App Request Trigger中提取数据

时间:2017-02-19 22:45:15

标签: azure azure-logic-apps

我有一个非常简单的Azure Logic应用程序。 我有一个具有以下有效负载的请求触发器

{"first":"13", "second":"3"}

我已经使用设计师

生成了架构
   {
  "properties": {
    "first": {
      "type": "string"
    },
    "second": {
      "type": "string"
    }
  },
  "type": "object"
}

我添加了一个发送电子邮件的新步骤,将主题设置为"第一个"参数。

enter image description here

我遇到的问题是"首先" (和#34;第二个")参数似乎永远不会被设置。 我收到了主体中有效负载的电子邮件,但主题是空的,所以"首先"即使它确实存在,也不会提取参数。

有人注意到我做错了什么吗?

0 个答案:

没有答案