POST api/sale/quoteorder/AddNormalProduct

报价单添加常规产品

请求信息

URI 参数

None.

Body 参数

AddQuoteOrderNormalProductModel
名称说明类型其他信息
QuoteOrderId

报价单

string

Required

ProductIdArray

产品Id数组

Collection of string

Required

请求格式

application/json, text/json

Sample:
{
  "QuoteOrderId": "sample string 1",
  "ProductIdArray": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<AddQuoteOrderNormalProductModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZJ.GX.Application.IBLL">
  <ProductIdArray xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ProductIdArray>
  <QuoteOrderId>sample string 1</QuoteOrderId>
</AddQuoteOrderNormalProductModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

响应信息

响应说明

ResponseEx
名称说明类型其他信息
StatusCode

状态码

ResponseStatusCode

None.

Message

信息

string

None.

Data

数据

Object

None.

响应格式

application/json, text/json

Sample:
{
  "StatusCode": 0,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<ResponseEx xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZJ.GX.Application.WebApi.Models">
  <Data />
  <Message>sample string 1</Message>
  <StatusCode>OK</StatusCode>
</ResponseEx>