GET api/MarketQuotation/GetProductSkuList/{productId}

获取市场行情的商品项列表

Request Information

URI Parameters

NameDescriptionTypeAdditional information
productId

integer

Required

Body Parameters

None.

Response Information

Resource Description

ResponseOfListOfProductPriceListItem
NameDescriptionTypeAdditional information
data

Collection of ProductPriceListItem

None.

errcode

错误码,默认为成功:SUCCESS

string

None.

errmsg

错误信息,默认为:成功

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    {
      "Id": 1,
      "Name": "sample string 2",
      "VenderName": "sample string 3",
      "MarketPrice": 1.0,
      "Price": 1.0,
      "CreateTime": "2025-12-26T20:19:24.8754615+08:00",
      "VenderId": 5
    },
    {
      "Id": 1,
      "Name": "sample string 2",
      "VenderName": "sample string 3",
      "MarketPrice": 1.0,
      "Price": 1.0,
      "CreateTime": "2025-12-26T20:19:24.8754615+08:00",
      "VenderId": 5
    }
  ],
  "errcode": "sample string 1",
  "errmsg": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseOfArrayOfProductPriceListItemP67rDlvc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi">
  <errcode>sample string 1</errcode>
  <errmsg>sample string 2</errmsg>
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Response.api">
    <d2p1:ProductPriceListItem>
      <d2p1:CreateTime>2025-12-26T20:19:24.8754615+08:00</d2p1:CreateTime>
      <d2p1:Id>1</d2p1:Id>
      <d2p1:MarketPrice>1</d2p1:MarketPrice>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:Price>1</d2p1:Price>
      <d2p1:VenderId>5</d2p1:VenderId>
      <d2p1:VenderName>sample string 3</d2p1:VenderName>
    </d2p1:ProductPriceListItem>
    <d2p1:ProductPriceListItem>
      <d2p1:CreateTime>2025-12-26T20:19:24.8754615+08:00</d2p1:CreateTime>
      <d2p1:Id>1</d2p1:Id>
      <d2p1:MarketPrice>1</d2p1:MarketPrice>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:Price>1</d2p1:Price>
      <d2p1:VenderId>5</d2p1:VenderId>
      <d2p1:VenderName>sample string 3</d2p1:VenderName>
    </d2p1:ProductPriceListItem>
  </data>
</ResponseOfArrayOfProductPriceListItemP67rDlvc>