GET goods/GetInfoPrice/{id}
Получение информации о прайсе по идентификатору ItemArt
Request Information
URI Parameters
Name | Description | Type | Additional information |
|---|---|---|---|
| id | Идентификатор ItemArt | integer | Required |
Body Parameters
None.Response Information
Resource Description
Информация о прайсе PriceInfoName | Description | Type | Additional information |
|---|---|---|---|
| LastUpdate | Время последнего обновления | string | None. |
| PerRej | Процент не успешных заказов | decimal number | None. |
| DeliDays | Срок поставки в днях с учетом только раб. дней | integer | None. |
| ReturnType | Условия возврата | string | None. |
| Descr | Описание | string | None. |
| HasPrePaid | Требуется предоплата | boolean | None. |
| ExpectedDate | Дата ожидания поставки | string | None. |
| WeekDay | День недели ожидания поставки | string | None. |
| ReturnDays | Дней на возврат | integer | None. |
| ReturnPerc | Процент удержания денежных средств при возврате | decimal number | None. |
| DeliveryOk | Процент поставки товара в заявленный срок | decimal number | None. |
| DaysDeli | Распределение процентов доставки товаров по дням (Key - день, Value - процент) | Collection of Pair of integer [key] and decimal number [value] | None. |
Response Formats
application/json, text/json
Sample:
{
"LastUpdate": "sample string 1",
"PerRej": 2.0,
"DeliDays": 3,
"ReturnType": "sample string 4",
"Descr": "sample string 5",
"HasPrePaid": true,
"ExpectedDate": "sample string 7",
"WeekDay": "sample string 8",
"ReturnDays": 9,
"ReturnPerc": 10.0,
"DeliveryOk": 11.0,
"DaysDeli": [
{
"Key": 1,
"Value": 2.0
},
{
"Key": 1,
"Value": 2.0
}
]
}
application/xml, text/xml
Sample:
<PriceInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Wiki.PublicApi.Core.Goods">
<DaysDeli xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
<d2p1:KeyValuePairOfintdecimal>
<d2p1:key>1</d2p1:key>
<d2p1:value>2</d2p1:value>
</d2p1:KeyValuePairOfintdecimal>
<d2p1:KeyValuePairOfintdecimal>
<d2p1:key>1</d2p1:key>
<d2p1:value>2</d2p1:value>
</d2p1:KeyValuePairOfintdecimal>
</DaysDeli>
<DeliDays>3</DeliDays>
<DeliveryOk>11</DeliveryOk>
<Descr>sample string 5</Descr>
<ExpectedDate>sample string 7</ExpectedDate>
<HasPrePaid>true</HasPrePaid>
<LastUpdate>sample string 1</LastUpdate>
<PerRej>2</PerRej>
<ReturnDays>9</ReturnDays>
<ReturnPerc>10</ReturnPerc>
<ReturnType>sample string 4</ReturnType>
<WeekDay>sample string 8</WeekDay>
</PriceInfo>