POST api/seller-goods?token={token}
Товары продавца
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
token |
Токен авторизации |
string |
Required |
Body Parameters
SellerGoodsRequest
SellerGoodsRequestName | Description | Type | Additional information |
---|---|---|---|
id_seller |
идентификатор продавца |
integer |
None. |
page |
номер страницы (если не указывать номер страницы, то отображается первая страница) |
integer |
None. |
rows |
количество единиц на странице (не более 2000) |
integer |
None. |
currency |
тип валюты для отображения цены товара: USD | RUR | EUR | UAH |
string |
None. |
order_col |
способ сортировки товаров: name — названию; price — цене; cntsell — продаж; cntreturn — возвратов; cntgoodresponses — положит. отзывов; cntbadresponses — отриц. отзывов; если не указывать, то сортируются по количеству продаж (убывание). |
string |
None. |
order_dir |
способ сортировки товаров: asc — А - Я, возрастание; desc — Я - А, убывание. |
string |
None. |
lang |
язык: ru-RU | en-US |
string |
None. |
show_hidden |
скрытые товары: 0|1 |
integer |
None. |
owner_id |
ID площадки |
integer |
None. |
Request Formats
application/json, text/json
{ "id_seller": 1, "page": 2, "rows": 3, "currency": "sample string 4", "order_col": "sample string 5", "order_dir": "sample string 6", "lang": "sample string 7", "show_hidden": 1, "owner_id": 1 }
application/x-www-form-urlencoded
Sample not available.
application/xml, text/xml
<digiseller.request> <id_seller>1</id_seller> <page>2</page> <rows>3</rows> <currency>sample string 4</currency> <order_col>sample string 5</order_col> <order_dir>sample string 6</order_dir> <lang>sample string 7</lang> <show_hidden>1</show_hidden> <owner_id>1</owner_id> </digiseller.request>
Response Information
Resource Description
Ответ товары продавца
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample not available.