简体   繁体   中英

Seperate Body/Header in logic app custom connector

Hi have an ARM Template that deploys some custom connectors. I have a connector called Start in that when i try to use this below piece of code which sets message body and header seperately it works fine. But when i do the same on a following connector , Assue Connector-Start as A and its followed by connector B. The input is not showing in different fields. Instead its not even relevant. can anyone help.

In the connector parameters here's the first block

{
                    "name": "Body",
                    "in": "body",
                    "schema": {
                      "type": "object",
                      "properties": {
                        "MessageBody": {
                          "type": "object",
                          "description": "Message body passed to the http trigger"
                        },
                        "MessageHeader": {
                          "type": "object",
                          "description": "Message header passed to the http trigger"
                        }
                      },
                      "required": [
                        "MessageBody",
                        "MessageHeader"
                      ]
                    },
                    "description": "Message body to get properties from the message payload.",
                    "required": true
                  },

Here's the input shown in portal for connector-A

在此处输入图片说明

It seems, after deployment the old connector is cached. Removing it and adding it again worked.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM