我在Postman中的POST请求正文(原始表单)看起来像-
{
"issueDescription" : "New issue reported",
"type" : "Managed services",
"priority" : "LOW",
"description" : "This is a TEST, please ignore",
"contactEmail" : "some.one@somewhere.com",
"contactName" : "abc",
"partnerTicketID" : "IN00012345"
}
我已将Header指定为'Content-Type ='application / json'
URL /端点已正确指定-'https://somecompany.com/rest/incident/
单击“发送”时,会显示以下错误(响应)-
//
<rsp code="error">
<msg>The Object passed in should not be null.</msg>
</rsp>
//
我在做什么错?
答案 0 :(得分:0)
您能否提供有关要将请求发送到的端点的更多信息?它期望什么样的对象?是否需要json字符串?
答案 1 :(得分:0)
rest/incident/
API方法返回一条错误消息,指出The Object passed in should not be null.
但是该错误消息非常模糊,您还没有包含API方法代码,因此我们无法告诉您应该指定哪个属性。
我建议您阅读API代码或与负责该代码的开发人员联系,以了解应指定的属性。