GET goods/GetImageInfoByIdArtInBrand/{id}
Получение коллекции ссылок на фотографии товара
Request Information
URI Parameters
Name | Description | Type | Additional information |
| id |
Id ArtInBrand
|
integer
|
Required
|
Body Parameters
None.
Response Information
Resource Description
Коллекция ссылок на фотографии товара
Collection of
ImageInfo
Name | Description | Type | Additional information |
| Url |
Ссылка на фото
|
string
|
None.
|
| Type |
Тип фото
|
integer
|
None.
|
| Name |
Наименование
|
string
|
None.
|
| Description |
Описание
|
string
|
None.
|
| Order |
Порядок просмотра
|
integer
|
None.
|
Response Formats
Sample:
[
{
"Url": "sample string 1",
"Type": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"Order": 5
},
{
"Url": "sample string 1",
"Type": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"Order": 5
}
]
Sample:
<ArrayOfImageInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Wiki.PublicApi.Core.Goods">
<ImageInfo>
<Description>sample string 4</Description>
<Name>sample string 3</Name>
<Order>5</Order>
<Type>2</Type>
<Url>sample string 1</Url>
</ImageInfo>
<ImageInfo>
<Description>sample string 4</Description>
<Name>sample string 3</Name>
<Order>5</Order>
<Type>2</Type>
<Url>sample string 1</Url>
</ImageInfo>
</ArrayOfImageInfo>