GET api/User/GetCoInfoImg?platformId={platformId}&type={type}

“GetCoInfoImg”的文档。

Request Information

Parameters

NameDescriptionAdditional information
platformId
“platformId”的文档。

Define this parameter in the request URI.

type
“type”的文档。

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Id": 1,
      "CoInfoType": 2,
      "ImgAddress": "sample string 3",
      "OrderbyNum": 4
    },
    {
      "Id": 1,
      "CoInfoType": 2,
      "ImgAddress": "sample string 3",
      "OrderbyNum": 4
    },
    {
      "Id": 1,
      "CoInfoType": 2,
      "ImgAddress": "sample string 3",
      "OrderbyNum": 4
    }
  ]
}

application/xml, text/xml

Sample:
<CoInfoImgList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TaiShengShi.Models">
  <Items>
    <CoInfoImg>
      <CoInfoType>2</CoInfoType>
      <Id>1</Id>
      <ImgAddress>sample string 3</ImgAddress>
      <OrderbyNum>4</OrderbyNum>
    </CoInfoImg>
    <CoInfoImg>
      <CoInfoType>2</CoInfoType>
      <Id>1</Id>
      <ImgAddress>sample string 3</ImgAddress>
      <OrderbyNum>4</OrderbyNum>
    </CoInfoImg>
    <CoInfoImg>
      <CoInfoType>2</CoInfoType>
      <Id>1</Id>
      <ImgAddress>sample string 3</ImgAddress>
      <OrderbyNum>4</OrderbyNum>
    </CoInfoImg>
  </Items>
</CoInfoImgList>