当我从邮递员发送http请求时,值永远不会更新。我正在使用假的你的json-schema来从模式中创建对象,但我无法获得逻辑app触发器来接受这些值。逻辑应用程序http监听器正在工作,我得到一个很好的请求,但它不听:(
{
"properties": {
"Email": {
"type": "string",
"value": ""
},
"EmployeeId": {
"type": "string",
"value": ""
},
"FirstName": {
"type": "string",
"value": ""
},
"JobCode": {
"type": "string",
"value": ""
},
"LastName": {
"type": "string",
"value": ""
},
"Ledger": {
"type": "string",
"value": ""
},
"NTID": {
"type": "string",
"value": ""
},
"Title": {
"type": "string",
"value": ""
}
},
"required": [
"Email",
"EmployeeId",
"FirstName",
"LastName",
"Ledger",
"NTID",
"Title"
],
"type": "object"
}
是架构,下面是我发送的对象{
"Email": "in",
"EmployeeId": "exercitation qui nulla anim Duis",
"FirstName": "reprehenderit magna",
"LastName": "dolore",
"Ledger": "dolore occaecat deserunt",
"NTID": "id nisi exercitation ut",
"Title": "laboris veniam in voluptate",
"JobCode": "laboris voluptate mollit"
}
http输入上的所有值都是“”
答案 0 :(得分:0)
您是否将" Content-Type" -header设置为" application / json"根据您的要求?