如何将此请求输入邮递员请求的正文?

时间:2017-07-28 14:47:27

标签: json swagger postman

如何使用邮递员请求的正文发送以下请求?

{
   Consumer:
 {
ConsumerId:
 }
 PersonUnderCare
 {
 Age: integer
 Gender:     string
 RelationId: integer
 RelationOther: string
 ProductInUseId: integer
 ProductInUseOther: string
 Condition: 
 ConditionOther: string
 }
 }

1 个答案:

答案 0 :(得分:2)

您可以使用JSON验证器确保您拥有有效的json,然后使用“raw”选项将其放入正文中。选择“body”,“raw”,然后从下拉菜单中选择JSON而不是纯文本。

我对你提供的代码采取了一些自由,但我相信正确的JSON格式看起来像这样

{
    "Consumer": {
        "ConsumerId": {
            "PersonUnderCare": [{
                "Age": 9,
                "Gender": "gender",
                "RelationId": "id",
                "RelationOther": "string",
                "ProductInUseId": 9,
                "ProductInUseOther": "string",
                "Condition": "string",
                "ConditionOther": "string"
            }]
        }
    }
}
我用过 JSONLint验证JSON