GET api/CrmInfo/GetWashProductList?uid={uid}

“GetWashProductList”的文档。

Request Information

Parameters

NameDescriptionAdditional information
uid
“uid”的文档。

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Id": 1,
      "SPId": 2,
      "Name": "sample string 3",
      "Price": 4.0
    },
    {
      "Id": 1,
      "SPId": 2,
      "Name": "sample string 3",
      "Price": 4.0
    },
    {
      "Id": 1,
      "SPId": 2,
      "Name": "sample string 3",
      "Price": 4.0
    }
  ]
}

application/xml, text/xml

Sample:
<WashProductListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TyretoolMail.Models">
  <Items>
    <WashProductModel>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <Price>4</Price>
      <SPId>2</SPId>
    </WashProductModel>
    <WashProductModel>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <Price>4</Price>
      <SPId>2</SPId>
    </WashProductModel>
    <WashProductModel>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <Price>4</Price>
      <SPId>2</SPId>
    </WashProductModel>
  </Items>
</WashProductListModel>