邮递员在表单数据中发送数组

时间:2020-07-21 19:33:10

标签: json postman

我想对Postman表单数据参数发出POST请求。 我使用的API的参数如下所示。

{
"Format": [string],
"Orders":
[{
    "Order": {
    "ClientOrderId":[int],
    "TotalOrderAmount":[decimal],
    "OrderShipment" {
        "PersonName":[string],
        "OtherPersonName":[string],
        "StreetAddress":[string],
    },
    "OrderInvoiceAddress": {
        "CustomerName":[string],
        "TaxOffice":[string],
        "TaxNumber":[string],
    },
    "OrderLines":
        [{
        "OrderLine": {
            "Ian":[string],
            "Quantity":[int],
        }
    }]
    }
}]
}

我应该为表单数据中的密钥提供什么? 例如;

Orders[Order][ClientOrderId]

是真的吗?

你能帮我吗?

0 个答案:

没有答案