带有JSON参数的REST API请求

时间:2018-05-10 16:55:57

标签: json rest api

我是REST API和JSON的新手,我有一个初学者的问题。我尝试使用的API是根据以下模式请求参数:

<GetAppts xmlns="<Removed>" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:urn1="<Removed>">
<!--idtype occurs:0,1-->
<Patient xsi:nil="false">
<!--string occurs:0,1-->
<urn1:ID xsi:nil="false">Z42991</urn1:ID>
<!--string occurs:0,1-->
<urn1:Type xsi:nil="false">External</urn1:Type>
</Patient>
</GetAppts>

请求参数示例如下:

{"Patient":{"ID":"E1234","Type":"MRN"}}

但是,当我尝试使用SoapUI和Postman来测试这个API时,我只看到参数的键值对,我不知道如何将ID和Type嵌套在Patient对象中:

SoapUI Parameters

Postman Parameters

0 个答案:

没有答案