我想对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]
是真的吗?
你能帮我吗?