Api 如何在Postman中传递POST请求中的数据数组?

Api 如何在Postman中传递POST请求中的数据数组?,api,post,postman,Api,Post,Postman,我已经创建了PostAPI 我需要在邮递员中传递以下数据如何传递这些数据 { "orderData": { "customer_id": 2, "products": [ { "product_id": 1, "qty": 1 }, { "product_id": 13, "qty": 1 } ], "shipping_method": "flatra

我已经创建了PostAPI 我需要在邮递员中传递以下数据如何传递这些数据

{
  "orderData": {
    "customer_id": 2,
    "products": [
      {
        "product_id": 1,
        "qty": 1
      },
     {
        "product_id": 13,
        "qty": 1
      }
    ],
    "shipping_method": "flatrate_flatrate",
    "payment_method": "checkmo"
  }
}
我试图通过下面,但显示错误

有人能帮我解决这个问题吗

将要在正文选项卡中发布的数据添加为突出显示的原始数据