GET api/ProductAdmin/getProductImg?pid={pid}
“getProductImg”的文档。
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| pid | “pid”的文档。 |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"ListId": 1,
"ListImgSrc": "sample string 2",
"BackgroundImg": "sample string 3",
"Items": [
{
"Id": 1,
"Type": 2,
"ImgSrc": "sample string 3",
"OrderBy": 4
},
{
"Id": 1,
"Type": 2,
"ImgSrc": "sample string 3",
"OrderBy": 4
},
{
"Id": 1,
"Type": 2,
"ImgSrc": "sample string 3",
"OrderBy": 4
}
]
}
application/xml, text/xml
Sample:
<ProImgListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TyretoolMail.Models.Admin">
<BackgroundImg>sample string 3</BackgroundImg>
<Items>
<ProImgModel>
<Id>1</Id>
<ImgSrc>sample string 3</ImgSrc>
<OrderBy>4</OrderBy>
<Type>2</Type>
</ProImgModel>
<ProImgModel>
<Id>1</Id>
<ImgSrc>sample string 3</ImgSrc>
<OrderBy>4</OrderBy>
<Type>2</Type>
</ProImgModel>
<ProImgModel>
<Id>1</Id>
<ImgSrc>sample string 3</ImgSrc>
<OrderBy>4</OrderBy>
<Type>2</Type>
</ProImgModel>
</Items>
<ListId>1</ListId>
<ListImgSrc>sample string 2</ListImgSrc>
</ProImgListModel>